-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.08 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
{
"name": "basic-nodebot",
"version": "1.0.0",
"main": "lib/index.js",
"author": "Iain [@IainIsCreative]",
"license": "MIT",
"scripts": {
"start": "nodemon -e js --ignore index.compiled.js --ignore dist --exec babel-node index.js",
"dev": "webpack -w",
"build": "rimraf dist ./index.compiled.js && babel index.js --out-file index.compiled.js --ignore browser.js && webpack browser.js",
"test": "eslint ./ && flow",
"production": "node index.compiled.js"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"express": "^4.16.2",
"johnny-five": "^0.13.0",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-flowtype": "^2.42.0",
"eslint-plugin-import": "^2.7.0",
"flow-bin": "^0.64.0",
"nodemon": "^1.14.12",
"rimraf": "^2.6.2",
"webpack": "^3.11.0"
}
}