-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.67 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
{
"name": "new-linda",
"version": "0.0.1",
"description": "",
"main": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "NODE_ENV=development DEBUG=server:*,nodemon:* nodemon",
"start": "node dist/app.js",
"build": "npm run build:server && npm run build:client",
"build:server": "tsc",
"build:client": "webpack",
"build:client:dev": "NODE_ENV=development webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/masuilab/new-linda.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/masuilab/new-linda/issues"
},
"homepage": "https://github.com/masuilab/new-linda#readme",
"devDependencies": {
"@types/body-parser": "^1.17.1",
"@types/cookie-parser": "^1.4.2",
"@types/deep-diff": "^1.0.0",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/react": "^16.9.5",
"@types/react-dom": "^16.9.1",
"@types/socket.io": "^2.1.3",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"nodemon": "^1.19.3",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"ts-loader": "^6.2.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
},
"dependencies": {
"@types/socket.io-client": "^1.4.32",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"deep-diff": "^1.0.2",
"dotenv": "^8.1.0",
"eventemitter2": "^5.0.1",
"express": "^4.17.1",
"pug": "^2.0.4",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0"
}
}