-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.58 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
{
"name": "simple-todo",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/Sharp-Team/simple-todo.git",
"author": "Sharp Team <Đức, Nam, Nhật>",
"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"
},
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-register": "^6.26.0",
"babel-watch": "^7.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"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"
},
"devDependencies": {
"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": "^2.0.2",
"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"
]
}
}