-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.68 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "api_demo",
"version": "1.0.0",
"description": "Api for the demo of atlas",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 10000 --exit --recursive ./test ./test/setup.js"
},
"engines": {
"node": ">=8.0.0"
},
"author": "",
"license": "ISC",
"dependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"config": "^1.31.0",
"cors": "^2.8.4",
"crypto-js": "^3.1.9-1",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-react": "^7.11.0",
"express": "^4.16.4",
"hub": "^6.1.2",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"mysql": "^2.16.0",
"mysql2": "^1.6.1",
"node-fetch": "^2.3.0",
"nodemailer": "^4.6.8",
"prettier": "^1.14.3",
"request": "^2.88.0",
"sequelize": "^6.0.0",
"supertest": "^3.1.0",
"uuid-token-generator": "^1.0.0"
},
"devDependencies": {
"eslint-plugin-prettier": "^3.0.0",
"flow-bin": "^0.83.0",
"husky": "^1.1.2",
"lint-staged": "^7.3.0"
},
"lint-staged": {
"./routes/**/*.{js,jsx}": [
"eslint --fix",
"git add"
],
"./test/**/*.{js,jsx}": [
"eslint --fix",
"git add"
],
"./database/**/*.{js,jsx}": [
"eslint --fix",
"git add"
],
"./models/**/*.{js,jsx}": [
"eslint --fix",
"git add"
],
"./middleware/**/*.{js,jsx}": [
"eslint --fix",
"git add"
],
"*.{js,json,md,scss,yaml,yml}": [
"prettier --write",
"git add"
]
}
}