-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.23 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
{
"name": "here-i-am",
"version": "1.0.0",
"description": "A utility for keeping track of the dynamically assigned IP addresses of headless devices.",
"main": "index.mjs",
"author": "Kyle Combes <[email protected]>",
"license": "MIT",
"scripts": {
"webpack:deploy": "webpack --config=webpack.config.js -p",
"heroku-postbuild": "npm run webpack:deploy",
"start": "webpack-dev-server -w --inline --hot",
"build": "webpack",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"webpack-cli": "^3.2.1",
"webpack-dev-server": ">=3.1.11"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"body-parser": "^1.18.3",
"css-loader": "^0.28.8",
"express": "^4.16.2",
"moment": "^2.20.1",
"mongodb": "^3.1.10",
"path": "^0.12.7",
"raw-loader": "^0.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-scripts": "1.0.17",
"react-svg-inline": "^2.0.1",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"style-loader": "^0.19.1",
"webpack": "^4.29.1"
}
}