-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.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
{
"name": "team10-op-gg-clone",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "yarn prebuild && next dev",
"build": "yarn prebuild && next build",
"start": "next start",
"prebuild": "rm -rf .next"
},
"dependencies": {
"axios": "^0.21.1",
"express": "^4.17.1",
"http-proxy-middleware": "^1.1.0",
"next": "^10.2.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"styled-components": "^5.2.3",
"styled-reset": "^4.3.4",
"swr": "^0.5.5"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/react": "^17.0.3",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-styled-components": "^1.12.0",
"cross-env": "^7.0.3",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-react": "^7.23.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}