-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.51 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
{
"name": "et-school-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec babel-node ./api/index.js",
"fix": "eslint . --fix",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "ET",
"license": "ISC",
"dependencies": {
"body-parser": "~1.19.0",
"dotenv": "~8.2.0",
"express": "~4.17.1",
"lodash": "~4.17.15",
"path": "0.12.7",
"pg": "~7.18.2",
"pg-hstore": "~2.3.3",
"sequelize": "~5.21.5"
},
"devDependencies": {
"@babel/cli": "~7.8.4",
"@babel/core": "~7.8.7",
"@babel/node": "~7.8.7",
"@babel/plugin-transform-runtime": "~7.8.3",
"@babel/preset-env": "~7.8.7",
"@babel/register": "~7.8.6",
"@babel/runtime": "~7.8.7",
"babel-eslint": "~10.1.0",
"babel-loader": "~8.0.6",
"chai": "~4.2.0",
"chai-http": "~4.3.0",
"eslint": "~6.8.0",
"eslint-config-airbnb-base": "~14.0.0",
"eslint-config-prettier": "~6.10.0",
"eslint-plugin-array-func": "~3.1.4",
"eslint-plugin-eslint-comments": "~3.1.2",
"eslint-plugin-import": "~2.20.1",
"eslint-plugin-lodash": "~6.0.0",
"eslint-plugin-node": "~11.0.0",
"eslint-plugin-prettier": "~3.1.2",
"eslint-plugin-promise": "~4.2.1",
"eslint-plugin-unicorn": "~17.0.1",
"husky": "~4.2.3",
"lint-staged": "~10.0.8",
"mocha": "~7.1.0",
"nodemon": "~2.0.2",
"nyc": "~15.0.0",
"prettier": "~1.19.1"
},
"sourceType": "module"
}