-
-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.33 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.33 KB
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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@freecodecamp/classroom",
"version": "0.0.0",
"private": true,
"description": "Classroom mode for freeCodeCamp",
"engines": {
"node": ">=18.18.0",
"npm": ">=9"
},
"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 -p 3001",
"build": "next build",
"start": "next start",
"test:watch": "jest --watch",
"test": "jest .",
"test:challenge-map": "jest __tests__/utils/challengeMapUtils.test.js",
"lint": "npm-run-all lint:*",
"lint:code": "eslint . --cache",
"lint:pretty": "prettier --ignore-path .gitignore --check .",
"format": "prettier --ignore-path .gitignore --write .",
"prepare": "husky",
"mock-fcc-data": "npx json-server --watch mock-json-server/fccdata.json --port 3002"
},
"dependencies": {
"@next-auth/prisma-adapter": "1.0.7",
"@prisma/client": "^6.19.2",
"json-server": "0.17.1",
"next": "^15.5.12",
"next-auth": "4.24.5",
"react": "^18.2.0",
"react-data-table-component": "7.5.3",
"react-dom": "^18.2.0",
"react-multi-select-component": "4.3.4",
"react-table": "^7.8.0",
"react-tabs": "4.3.0",
"react-toastify": "^9.0.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"autoprefixer": "^10.4.27",
"eslint": "^9.39.3",
"eslint-config-next": "^15.5.12",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-jest": "^28.14.0",
"husky": "^9.1.7",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"lint-staged": "^16.3.2",
"npm-run-all": "4.1.5",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"prisma": "^6.19.2",
"react-test-renderer": "^18.3.1",
"tailwindcss": "3.3.5",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"overrides": {
"next-auth": {
"next": "$next"
}
},
"prisma": {
"seed": "node prisma/seed.js"
}
}