-
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) · 973 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 973 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": "xpto",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "babel-node index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"test-integration": "mocha --opts test/integration/mocha.opts test/integration/**/*.js",
"test-unit": "mocha --opts test/unit/mocha.opts test/unit/**/*.js",
"lint": "eslint **/*.js",
"lint:fix": "eslint **/*.js --fix"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-env": "^1.1.8",
"chai": "^3.5.0",
"eslint": "^3.13.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"mocha": "^3.2.0",
"supertest": "^2.0.1",
"testdouble": "^1.11.0"
},
"dependencies": {
"body-parser": "^1.16.0",
"express": "^4.14.0",
"sequelize": "^3.29.0",
"sqlite3": "^3.1.8"
}
}