-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.56 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.56 KB
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
{
"name": "Node-Express-Postgres-Tamplate",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/charisschomba/Node-Express-Postgres-Tamplate.git",
"author": "chariss <charisschomba@gmail.com>",
"license": "MIT",
"scripts": {
"start": "nodemon --exec babel-node index.js",
"lint": "eslint 'server/**/*.js'",
"lint-fix": "eslint 'server/**/*.js' --fix",
"format": "prettier-eslint 'server/**/*.{js,json}'",
"test": "nyc mocha 'server/tests/**/*.js' --timeout 60000 --exit"
},
"lint-staged": {
"**/*.js": [
"eslint 'server/**/*.js' --fix",
"prettier-eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"morgan": "^1.9.1",
"pg": "^7.14.0",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.2",
"sequelize-cli": "^5.5.1"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/node": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"chai": "^4.2.0",
"colors": "^1.4.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-promise": "^4.2.1",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"mocha": "^6.2.2",
"mocha-junit-reporter": "^1.23.1",
"nodemon": "^2.0.1",
"nyc": "^14.1.1",
"prettier-eslint-cli": "^5.0.0",
"sinon": "^7.5.0",
"supertest": "^4.0.2",
"swagger-node-express": "^2.1.3"
}
}