-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.55 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.55 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
59
{
"name": "express-babel-starter",
"version": "1.0.0",
"description": "An unopinionated express starter kit with support for es6+ features using babel",
"private": false,
"repository": "https://github.com/benmalcom/express-babel-starter",
"author": "Ben ikeji <benjaminikeji@gmail.com>",
"main": "dist/app.js",
"scripts": {
"prestart": "npm run build",
"start": "node dist/app",
"start:dev": "nodemon src/app --exec \"npm run lint && node -r babel-register\"",
"clean": "rimraf dist",
"build": "npm run clean && mkdir dist && babel src/ -s -d dist",
"test": "mocha --exit --require babel-register test/",
"lint": "esw src"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"body-parser": "~1.17.1",
"config": "^1.27.0",
"cookie-parser": "~1.4.3",
"debug": "^2.6.9",
"ejs": "^2.5.7",
"express": "~4.15.2",
"morgan": "~1.8.1",
"rimraf": "^2.6.2"
},
"keywords": [
"babel",
"es6",
"es7",
"starter",
"boilerplate",
"express-babel-boilerplate",
"nodejs",
"js",
"mocha",
"eslint",
"babel-cli",
"seed",
"express-babel-seed",
"es2015",
"es2016"
],
"devDependencies": {
"babel-eslint": "^8.0.1",
"babel-register": "^6.26.0",
"eslint": "^4.10.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-watch": "^3.1.3",
"mocha": "^4.0.1",
"supertest": "^3.0.0"
}
}