-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
66 lines (66 loc) · 1.89 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
{
"name": "instagram_clone",
"version": "0.1.0",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.6.2",
"@stomp/stompjs": "^6.1.2",
"axios": "^0.24.0",
"emoji-picker-react": "^3.5.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"query-string": "^7.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
"sockjs-client": "^1.5.2",
"stompjs": "^2.3.3",
"styled-components": "^5.3.1",
"styled-reset": "^4.3.4",
"typescript": "^4.1.2",
"uuid": "^9.0.0"
},
"scripts": {
"start": "react-scripts start",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "react-scripts build",
"deploy": "gh-pages -d build",
"build": "react-scripts build",
"postbuild": "cp build/index.html build/404.html"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.8",
"@types/navermaps": "^3.0.16",
"@types/node": "^12.0.0",
"@types/query-string": "^6.3.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.3.0",
"@types/sockjs-client": "^1.5.1",
"@types/stompjs": "^2.3.5",
"@types/styled-components": "^5.1.14",
"@types/uuid": "^9.0.1",
"react-error-overlay": "6.0.9"
}
}