-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.39 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
{
"name": "picpic",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"deploy": "npm run build && aws s3 sync dist/ s3://picpic-bucket --delete"
},
"dependencies": {
"@react-spring/web": "^9.7.3",
"@reduxjs/toolkit": "^1.9.7",
"axios": "^1.6.1",
"crypto-js": "^4.2.0",
"file-saver": "^2.0.5",
"html2canvas": "^1.4.1",
"jotai": "^2.5.1",
"lodash": "^4.17.21",
"node-sass": "^9.0.0",
"path": "^0.12.7",
"react": "^18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-redux": "^8.1.3",
"react-router-dom": "^6.18.0",
"react-scripts": "^5.0.1",
"react-spring": "^9.7.3",
"react-use-gesture": "^9.1.3",
"react-use-measure": "^2.1.1",
"redux": "^4.2.1",
"redux-persist": "^6.0.0",
"redux-persist-transform-encrypt": "^5.0.1",
"redux-toolkit": "^1.1.2",
"vite-plugin-env": "^1.0.1"
},
"devDependencies": {
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.45.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"sass": "^1.69.5",
"vite": "^4.4.5"
}
}