-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 889 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": "service-changes",
"version": "1.0.0",
"main": "index.js",
"author": "Harpo Jaeger <[email protected]>",
"license": "MIT",
"engines": {
"node": "8.11.1",
"yarn": "1.12.3"
},
"dependencies": {
"dotenv": "^5.0.1",
"express": "^4.16.2",
"twitter": "^1.7.1"
},
"scripts": {
"dev": "nodemon index.js --exec babel-node",
"devstream": "nodemon stream/stream.js --exec babel-node",
"stream": "node build/bundle.js",
"build": "webpack --config ./webpack.config.js",
"postinstall": "yarn build",
"test": "jest",
"lint": "eslint --ignore-pattern=build ./"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^5.10.0",
"eslint-plugin-jest": "^22.1.2",
"jest": "^23.6.0",
"nodemon": "^1.17.3",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15"
}
}