forked from freeCodeCamp/classroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@freecodecamp/classroom",
"version": "0.0.0",
"private": true,
"description": "Classroom mode for freeCodeCamp",
"engines": {
"node": "^16",
"npm": "^8"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/freecodecamp/classroom.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/freecodecamp/classroom/issues"
},
"homepage": "https://github.com/freecodecamp/classroom#readme",
"scripts": {
"develop": "next dev",
"build": "next build",
"start": "next start",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npm-run-all lint:*",
"lint:code": "eslint . --ext .js --cache",
"lint:pretty": "prettier --ignore-path .gitignore --check .",
"format": "prettier --ignore-path .gitignore --write .",
"prepare": "husky install",
"mock-fcc-data": "npx json-server --watch mock-json-server/fccdata.json --port 3001"
},
"dependencies": {
"@headlessui/react": "1.7.8",
"@next-auth/prisma-adapter": "1.0.5",
"@prisma/client": "4.9.0",
"flowbite": "1.6.3",
"json-server": "0.17.1",
"next": "^12.1.6",
"next-auth": "4.19.0",
"react": "^17.0.2",
"react-copy-to-clipboard": "5.1.0",
"react-data-table-component": "7.5.3",
"react-dom": "17.0.2",
"react-multi-select-component": "4.3.4",
"react-select": "5.7.0",
"react-tabs": "4.2.1",
"react-toastify": "^9.0.8",
"styled-components": "5.3.6"
},
"devDependencies": {
"autoprefixer": "10.4.12",
"eslint": "8.32.0",
"eslint-config-next": "12.3.4",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-utils": "3.0.0",
"husky": "7.0.4",
"lint-staged": "12.5.0",
"npm-run-all": "4.1.5",
"postcss": "8.4.21",
"prettier": "2.8.3",
"prisma": "4.9.0",
"tailwindcss": "3.2.4"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"prisma": {
"seed": "node prisma/seed.js"
}
}