forked from jakkra/SmartMirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.62 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
61
62
63
64
{
"name": "lookup-server",
"version": "0.0.1",
"private": true,
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"eslintConfig": {
"extends": "react-app"
},
"dependencies": {
"async": "^2.1.4",
"aws-sdk": "^2.7.21",
"babel-cli": "6.14.0",
"babel-core": "6.14.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-stage-0": "6.5.0",
"body-parser": "^1.16.0",
"bootstrap": "^3.3.7",
"dotenv": "^2.0.0",
"ds18x20": "^0.2.0",
"express": "^4.13.3",
"express-ws": "^2.0.0",
"fs": "0.0.2",
"google-auto-auth": "^0.5.2",
"google-proto-files": "^0.8.6",
"grpc": "^1.0.1",
"install": "^0.8.4",
"moment": "^2.17.1",
"node-hue-api": "^2.3.0",
"node-record-lpcm16": "^0.1.8",
"node-skanetrafiken": "0.0.3",
"node-uuid": "^1.4.7",
"npm": "^4.0.5",
"onoff": "^1.1.1",
"react": "^15.4.1",
"react-addons-css-transition-group": "^15.4.1",
"react-addons-transition-group": "^15.4.1",
"react-bootstrap": "^0.30.7",
"react-dom": "^15.4.1",
"reactstrap": "^3.9.5",
"recharts": "^1.0.0-alpha.0",
"request": "^2.79.0",
"serialport": "^4.0.7",
"snowboy": "^1.1.0",
"speaker": "^0.3.0",
"striptags": "^2.1.1"
},
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\"",
"server": "babel-node server.js",
"client": "babel-node start-client.js",
"dev": "echo \"This command has been deprecated. Use 'npm start'\" && exit 1",
"test": "mocha --recursive"
},
"devDependencies": {
"chai": "^4.1.2",
"concurrently": "^3.1.0",
"mocha": "^4.0.0"
}
}