generated from harrytran998/node-sql-boilerplate-app
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.95 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
{
"name": "n-cov19-back-end",
"version": "1.0.0",
"description": "nCov19 Back End",
"main": "index.js",
"repository": "https://github.com/harrytran998/nCov19-back-end.git",
"author": "Demons Light <nhattq.coding@gmail.com>",
"license": "MIT",
"scripts": {
"watch": "babel-watch -L src/index.js",
"start": "node src/index.js",
"db:migrate": "sequelize db:migrate",
"db:migrate:undo": "sequelize db:migrate:undo",
"db:undo:all": "sequelize db:migrate:undo:all",
"db:migrate:create": "sequelize migration:create --name",
"db:seed": "sequelize db:seed:all",
"db:setup": "yarn db:migrate && yarn db:seed"
},
"engines": {
"node": "12.16.1",
"npm": "6.13.4"
},
"dependencies": {
"@babel/core": "^7.8.4",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.6",
"apollo-server": "^2.10.1",
"apollo-server-express": "^2.10.1",
"axios": "^0.19.2",
"babel-plugin-module-resolver": "^4.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.4.0",
"fbgraph": "^1.4.4",
"googleapis": "^48.0.0",
"helmet": "^3.21.3",
"http-status-codes": "^1.4.0",
"jsonwebtoken": "^8.5.1",
"lodash.pick": "^4.4.0",
"pg": "^7.18.2",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.5",
"sequelize-cli": "^5.5.1",
"winston": "^3.2.1"
},
"devDependencies": {
"babel-register": "6.26.0",
"babel-watch": "7.0.0",
"chalk": "3.0.0",
"eslint": "6.8.0",
"eslint-import-resolver-babel-module": "5.1.2",
"eslint-plugin-import": "2.20.1",
"lint-staged": "10.0.8",
"prettier": "1.19.1",
"pretty-quick": "2.0.1",
"yorkie": "2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verify-commit-msg.js"
},
"lint-staged": {
"*.{js}": [
"pretty-quick --staged"
]
}
}