-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.31 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.31 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
{
"name": "api",
"version": "1.0.0",
"description": "BVB",
"main": "index.js",
"scripts": {
"lint-staged": "lint-staged",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm rebuild bcrypt --build-from-source && nodemon --exec babel-node index.js",
"docker-up": "cd docker && docker-compose up -d && cd ../",
"docker-down": "cd docker && docker-compose down && cd ../"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bulls-Vs-Bears/api.git"
},
"author": "DJP",
"license": "ISC",
"bugs": {
"url": "https://github.com/Bulls-Vs-Bears/api/issues"
},
"homepage": "https://github.com/Bulls-Vs-Bears/api#readme",
"dependencies": {
"babel-plugin-module-resolver": "^4.0.0",
"bcrypt": "^5.0.0",
"dotenv": "^8.2.0",
"fastify": "^2.15.2",
"fastify-helmet": "^3.0.2",
"fastify-postgres": "^2.0.0",
"fastify-rate-limit": "^3.0.1",
"pg": "^8.3.0",
"pino-multi-stream": "^5.1.1"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"lint-staged": "10.1.2",
"nodemon": "^2.0.4"
},
"lint-staged": {
"*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}