-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "cranio-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "next lint --fix",
"lint:css": "stylelint '**/*.{css,scss}' --fix",
"lint-staged": "lint-staged --config lint-staged.config.js"
},
"dependencies": {
"axios": "1.2.1",
"next": "13.2.4",
"next-http-proxy-middleware": "^1.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-slick": "^0.29.0",
"slick-carousel": "^1.8.1",
"storybook": "6.5.15"
},
"simple-git-hooks": {
"pre-commit": "npm run lint-staged"
},
"devDependencies": {
"@next/font": "13.0.7",
"@svgr/webpack": "^8.0.1",
"@types/node": "18.11.17",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"classnames": "^2.3.2",
"eslint": "8.30.0",
"eslint-config-next": "13.0.7",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"sass": "1.58.3",
"sass-loader": "13.2.0",
"simple-git-hooks": "^2.8.1",
"stylelint": "^15.4.0",
"stylelint-config-recommended-scss": "^9.0.1",
"typescript": "4.9.4"
}
}