-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.7 KB
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
{
"name": "express-babel-rest-api-starter",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"test": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text ./node_modules/.bin/mocha --require babel-register --recursive ./src/tests",
"test:watch": "yarn test --watch",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"clean": "rimraf ./dist",
"dev": "nodemon ./src --exec babel-node",
"build": "rimraf ./dist && babel ./src -d ./dist --source-maps",
"start": "node ./dist/index.js"
},
"dependencies": {
"body-parser": "^1.18.2",
"convict": "^4.0.2",
"dotenv": "^5.0.0",
"express": "^4.16.2",
"helmet": "^3.10.0",
"http-status": "^1.0.1",
"morgan": "^1.9.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"mocha": "^5.0.0",
"nodemon": "^1.14.12",
"nyc": "^11.4.1",
"rimraf": "^2.6.2",
"supertest": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrickkang/express-babel-rest-api-starter.git"
},
"keywords": [
"express",
"babel",
"starter"
],
"author": "Patrick Kang",
"license": "MIT",
"bugs": {
"url": "https://github.com/patrickkang/express-babel-rest-api-starter/issues"
},
"homepage": "https://github.com/patrickkang/express-babel-rest-api-starter#readme"
}