-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.64 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
{
"name": "school",
"description": "School manager",
"repository": "[email protected]:Flavien-Pensato/school.github.io.git",
"author": "Flavien-Pensato <[email protected]>",
"license": "MIT",
"dependencies": {
"@chakra-ui/react": "^2.8.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"bcryptjs": "^2.4.3",
"deepmerge": "^4.2.2",
"framer-motion": "^10.16.1",
"little-state-machine": "^4.8.0",
"mongoose": "^5.11.8",
"next": "^13.4.19",
"next-auth": "4.23.1",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "7.45.4",
"slug": "^4.0.2",
"swr": "^2.2.1",
"xlsx": "^0.16.9"
},
"devDependencies": {
"@emotion/eslint-plugin": "^11.0.0",
"@next/eslint-plugin-next": "^13.4.19",
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-react": "^7.33.2",
"prettier": "2.2.1",
"typescript": "^5.2.2"
},
"scripts": {
"lint": "eslint --color '*.js' '{pages,config,components,modules,elements,theme}/**/*.js'",
"test": "jest",
"dev": "next",
"build": "next build",
"start": "next start",
"circle": "circleci config validate -c .circleci/config.yml"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": [
"eslint",
"git add"
],
"*.spec.js": [
"jest"
],
".circleci/config.yml": [
"circleci config validate -c .circleci/config.yml"
]
}
}