-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
35 lines (35 loc) · 927 Bytes
/
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
{
"name": "docker-dashboard",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack -p && node server.js",
"start-dev": "./node_modules/.bin/concurrently \"nodemon server.js\" \"webpack --watch\""
},
"author": "",
"license": "ISC",
"dependencies": {
"classnames": "^2.2.5",
"dockerode": "^2.3.1",
"express": "^4.14.0",
"lodash": "^4.17.4",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"socket.io": "^1.7.2"
},
"devDependencies": {
"@types/bootstrap": "^3.3.32",
"@types/classnames": "0.0.32",
"@types/jquery": "^2.0.39",
"@types/lodash": "^4.14.45",
"@types/react": "^0.14.55",
"@types/react-dom": "^0.14.20",
"@types/socket.io": "^1.4.27",
"@types/socket.io-client": "^1.4.29",
"concurrently": "^3.4.0",
"nodemon": "^1.11.0",
"source-map-loader": "^0.1.5",
"ts-loader": "^1.3.3"
}
}