-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.22 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": "dali-lights",
"version": "0.0.0",
"description": "dali slack lights integration",
"main": "src/server.js",
"engines": {
"node": "7.4.0",
"npm": "4.0.5"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/server.js --exec babel-node",
"start": "babel-node src/server.js",
"build": "babel src -d dist",
"prod": "npm run build; node dist/server.js"
},
"repository": {
"type": "git",
"url": "[email protected]:dali-lights.git "
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-preset-env": "^1.1.8",
"babel-runtime": "^6.22.0",
"body-parser": "^1.16.0",
"colornames": "^1.1.1",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"function-rate-limit": "1.1.0",
"hex-rgb": "^1.0.0",
"lodash": "^4.17.4",
"logfmt": "^1.2.0",
"node-hue-api": "2.4.1",
"tinycolor2": "^1.4.1"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.14.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"nodemon": "^1.11.0"
}
}