-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.48 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
{
"name": "retro",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"express": "^4.17.1",
"localtunnel": "^2.0.1",
"ngrok": "^3.4.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"socket.io": "^2.4.1",
"socket.io-client": "^2.4.0",
"uuid": "^3.4.0"
},
"scripts": {
"tsc": "tsc",
"start:prod": "NODE_ENV=production concurrently --kill-others \"npm run watch\" \"ts-node-dev --respawn --transpileOnly server.ts\" \"ts-node-dev --transpileOnly ngrok.ts\"",
"start:dev-client": "webpack-dev-server --mode development --open",
"start:dev-server": "ts-node-dev --respawn --transpile-only server.ts",
"watch": "webpack --watch"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/react": "^16.14.4",
"@types/react-dom": "^16.9.11",
"@types/socket.io": "^2.1.13",
"@types/socket.io-client": "^1.4.35",
"@types/uuid": "^3.4.9",
"concurrently": "^5.3.0",
"css-loader": "^3.6.0",
"html-webpack-plugin": "^3.2.0",
"source-map-loader": "^0.2.4",
"style-loader": "^1.3.0",
"svg-url-loader": "^3.0.3",
"ts-loader": "^6.2.2",
"ts-node-dev": "^1.1.6",
"typescript": "^3.9.9",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
}
}