-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.4 KB
/
package.json
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
{
"name": "testable-api-nodejs",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=prod babel-node index.js",
"test": "yarn test-integration && yarn test-unit && yarn test-contract",
"test-integration": "NODE_ENV=test mocha --opts test/integration/mocha.opts test/integration/**/*.js",
"test-unit": "NODE_ENV=test mocha --opts test/unit/mocha.opts test/unit/**/*.js",
"test-contract": "NODE_ENV=test mocha --opts test/contracts/mocha.opts test/contracts/contracts/*.js",
"lint": "eslint '**/*.js' --fix"
},
"repository": "https://github.com/fernandobd42/testable-api-nodejs.git",
"author": "fernandobd42 <[email protected]>",
"license": "MIT",
"dependencies": {
"bcrypt": "^1.0.2",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"http-status": "^1.0.1",
"jwt-simple": "^0.5.1",
"passport": "^0.3.2",
"passport-jwt": "^2.2.1",
"sequelize": "^3.30.4",
"sqlite3": "^3.1.8"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"joi": "^10.5.0",
"joi-assert": "^0.0.3",
"mocha": "^3.4.1",
"supertest": "^3.0.0",
"testdouble": "^2.1.2"
}
}