-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.91 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "node-api",
"version": "1.0.0",
"main": "index.js",
"description": "API",
"author": "rafael Faria",
"license": "MIT",
"scripts": {
"dev": "set NODE_ENV=dev && nodemon --exec babel-node index.js",
"start": "set NODE_ENV=prod && babel-node index.js",
"test-integration": "set NODE_ENV=dev && mocha --opts test/integration/mocha.opts test/integration/**/*.js",
"test-unit": "set NODE_ENV=dev && mocha --opts test/unit/mocha.opts test/unit/**/*.js",
"test-contract": "set NODE_ENV=dev && mocha --opts test/contracts/mocha.opts test/contracts/contracts/*.js",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint '**/*.js' --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/rrfaria/node-api.git"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test-integration && npm run test-unit && npm run test-contract"
}
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"@slack/web-api": "^5.7.0",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"multer": "^1.4.2",
"request": "^2.88.2",
"sequelize": "^5.21.5",
"sqlite3": "^4.1.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.6",
"@babel/node": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@babel/register": "^7.8.6",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "5.0.1",
"eslint-plugin-react": "7.12.4",
"http-status": "^1.4.2",
"husky": "^4.2.3",
"joi": "^14.3.1",
"joi-assert": "^0.0.3",
"mocha": "^7.1.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2",
"testdouble": "^3.13.0"
}
}