-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.29 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
73
74
75
76
77
78
79
{
"name": "artesano",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=16.15.1",
"npm": ">=8.5.0",
"yarn": "please use NPM"
},
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@chakra-ui/layout": "^1.5.1",
"@chakra-ui/react": "^1.7.2",
"@chakra-ui/system": "^2.1.3",
"@dh-react-hooks/use-raf": "^0.9.1",
"@emotion/react": "^11.6.0",
"@emotion/styled": "^11.6.0",
"@prisma/client": "^3.6.0",
"bcrypt": "^5.0.1",
"cookie": "^0.4.1",
"cookies": "^0.8.0",
"easy-peasy": "^5.0.4",
"format-duration": "^1.4.0",
"framer-motion": "^4.1.17",
"jsonwebtoken": "^8.5.1",
"next": "12.0.7",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-howler": "^5.2.0",
"react-icons": "^4.3.1",
"reset-css": "^5.0.1",
"swr": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@types/react": "^17.0.37",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"babel-loader": "^8.2.5",
"babel-plugin-superjson-next": "^0.4.2",
"cross-env": "^7.0.3",
"eslint": "^8.4.1",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.5.12",
"husky": "^8.0.1",
"prettier": "^2.4.1",
"prisma": "^3.6.0",
"ts-node": "^10.4.0"
},
"resolutions": {
"webpack": "^5"
}
}