-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 980 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 980 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
{
"name": "example-node-es6-babel",
"version": "1.0.0",
"description": "Example tutorial babel with ES6.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "babel-node index.js",
"test-integration": "mocha --opts test/integration/mocha.opts test/integration/*.js",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint '**/*.js' --fix"
},
"author": "Eric Chinen",
"license": "MIT",
"dependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"sequelize": "^4.2.1",
"sqlite3": "^3.1.8",
"yarn": "^0.27.5"
},
"devDependencies": {
"chai": "^4.0.2",
"eslint": "3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "2.6.1",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.1.0",
"mocha": "^3.4.2",
"supertest": "^3.0.0"
}
}