-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.78 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
{
"name": "node-boilerplate",
"version": "1.0.0",
"main": "index.js",
"author": "Antara",
"license": "ISC",
"private": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "echo 'running tests...' && yarn test:quiet && echo 'lint checking...' && yarn run-lint"
}
},
"lint-staged": {
"*.{js,css,scss}": [
"yarn prettier",
"yarn run-lint",
"git add"
]
},
"scripts": {
"test": "node --inspect=0.0.0.0:6858 node_modules/jest/bin/jest.js",
"build": "mkdir dist && babel ./ -s -d dist",
"start:prod": "./dist/bin/www",
"start": "nodemon ./bin/dev",
"prettier": "prettier \"**/*.{js,css}\" --write",
"run-lint": "eslint --fix ."
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/node": "^7.2.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"babelify": "^10.0.0",
"cross-env": "^7.0.0",
"dotenv": "^10.0.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"fastify": "^3.25.2",
"fastify-autoload": "^3.9.0",
"fastify-blipp": "^3.1.0",
"fastify-cors": "^3.0.3",
"fastify-helmet": "^5.3.2",
"fastify-http-proxy": "^6.2.1",
"fastify-no-icon": "^4.0.0",
"fastify-plugin": "^3.0.0",
"fastify-swagger": "^4.13.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.4",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"qs": "^6.9.1",
"raven": "^2.6.4",
"rimraf": "^3.0.2",
"sequelize-cli": "^6.3.0",
"winston": "^3.2.1"
},
"dependencies": {
"bcrypt": "^5.0.1",
"convict": "^6.2.1",
"cors": "^2.8.5",
"sequelize": "^6.12.2",
"jsonwebtoken": "^8.5.1",
"make-promises-safe": "^5.1.0",
"pg": "^8.7.1"
}
}