-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.04 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
{
"private": true,
"scripts": {
"dev": "next dev",
"lint": "next lint",
"format": "prettier --write .",
"build": "next build",
"start": "next start",
"test": "jest --watch",
"test:ci": "jest --ci",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test dev http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test dev http://localhost:3000 cypress:headless",
"storybook": "start-storybook -p 6006 -s ./public",
"build-storybook": "build-storybook -s public",
"prepare": "husky install",
"pre-commit": "lint-staged",
"chromatic": "npx chromatic --project-token=e42d89f15498"
},
"lint-staged": {
"*.ts, tsx, js, jsx": [
"eslint --fix"
],
"*.{css, html, json, ts, tsx}": [
"prettier --write"
]
},
"dependencies": {
"@chakra-ui/react": "1.8.6",
"@emotion/react": "11.8.1",
"@emotion/styled": "11.8.1",
"framer-motion": "6.2.8",
"next": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "3.34.16",
"swiper": "8.0.7"
},
"devDependencies": {
"@babel/core": "7.17.5",
"@chakra-ui/storybook-addon": "1.0.3",
"@storybook/addon-actions": "6.4.19",
"@storybook/addon-essentials": "6.4.19",
"@storybook/addon-links": "6.4.19",
"@storybook/builder-webpack5": "6.4.19",
"@storybook/manager-webpack5": "6.4.19",
"@storybook/react": "6.4.19",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.5.0",
"@types/react": "17.0.38",
"babel-jest": "27.4.5",
"babel-loader": "8.2.3",
"chromatic": "6.5.1",
"cypress": "9.5.1",
"eslint": "8.5.0",
"eslint-config-next": "latest",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-storybook": "0.5.7",
"eslint-plugin-testing-library": "5.0.1",
"husky": "7.0.4",
"jest": "27.4.5",
"lint-staged": "12.3.5",
"prettier": "2.3.0",
"start-server-and-test": "1.14.0",
"typescript": "4.5.4"
}
}