-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.19 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
{
"name": "with-typescript-styled-components",
"version": "1.0.0",
"scripts": {
"dev": "next -p 3000",
"build": "next build",
"start": "next start -p 3000",
"server-dev": "nodemon",
"server-build": "tsc --project tsconfig.server.json",
"server-start": "cross-env NODE_ENV=production node server/build/server/src/index.js"
},
"dependencies": {
"@types/express": "^4.17.11",
"chance": "^1.1.7",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"framer-motion": "^4.0.3",
"next": "latest",
"node-fetch": "^2.6.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"recoil": "^0.1.3",
"rxjs": "^6.6.6",
"socket.io": "^4.0.0",
"socket.io-client": "^4.0.0",
"styled-components": "^5.0.0"
},
"devDependencies": {
"@types/chance": "^1.1.1",
"@types/node": "^14.14.37",
"@types/node-fetch": "^2.5.10",
"@types/react": "16.8.23",
"@types/react-dom": "16.8.4",
"@types/socket.io": "^2.1.13",
"@types/socket.io-client": "^1.4.36",
"@types/styled-components": "5.0.1",
"babel-plugin-styled-components": "^1.10.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "4.0"
},
"license": "MIT"
}