-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1009 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1009 Bytes
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
{
"name": "node-boilerplate",
"private": true,
"version": "1.0.0",
"description": "Your app description",
"scripts": {
"clean": "rimraf dist",
"build:babel": "NODE_ENV=production babel src --out-dir dist",
"build": "yarn run clean && yarn run build:babel",
"start:babel": "babel-node src/main",
"prestart": "yarn",
"start": "nodemon --watch src --exec yarn run start:babel",
"serve": "node dist/main",
"lint": "eslint src",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"jest": "^20.0.4",
"nodemon": "*",
"rimraf": "^2.5.2",
"supertest": "^3.0.0"
},
"dependencies": {
"body-parser": "^1.17.2",
"express": "^4.13.4",
"morgan": "^1.7.0",
"winston": "^2.3.1"
}
}