-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.37 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
{
"name": "cupicks-fe",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "jest --config ./jest.config.json",
"test:watch": "jest --config ./jest.config.json --watch",
"test:clear": "jest --clearCache",
"test:help": "jest --help"
},
"dependencies": {
"@hookform/resolvers": "^2.9.7",
"axios": "^0.27.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-ga": "^3.3.1",
"react-hook-form": "^7.34.2",
"react-intersection-observer": "^9.4.0",
"react-jwt": "^1.1.6",
"react-router-dom": "^6.3.0",
"react-slick": "^0.29.0",
"slick-carousel": "^1.8.1",
"styled-components": "^5.3.5",
"vite-plugin-svgr": "^2.2.1"
},
"devDependencies": {
"@babel/preset-env": "^7.19.3",
"@babel/preset-react": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.0.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.1.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react-test-renderer": "^18.2.0",
"vite": "^3.0.7",
"vite-plugin-pwa": "^0.13.1"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write"
]
}
}