-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.08 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
{
"name": "s2-web",
"version": "0.1.0",
"private": true,
"scripts": {
"start:dev": "next dev -p 8080",
"build": "next build",
"start": "next start -p 8080",
"lint": "next lint",
"ts": "tsc",
"format": "prettier --loglevel warn --write \"**/*.{ts,tsx}\"",
"commit": "cz",
"prepare": "husky install"
},
"dependencies": {
"@fontsource/plus-jakarta-sans": "^4.5.2",
"@types/styled-components": "^5.1.23",
"animate.css": "^4.1.1",
"next": "12.1.0",
"normalize.css": "^8.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-spring": "^9.4.3",
"react-spring-3d-carousel": "^1.2.1",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@types/node": "17.0.21",
"@types/react": "17.0.39",
"babel-plugin-styled-components": "^2.0.6",
"commitizen": "^4.2.4",
"eslint": "8.9.0",
"eslint-config-next": "12.1.0",
"husky": "^7.0.0",
"prettier": ">=2",
"typescript": "4.5.5"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
}
}