-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.38 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.38 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
{
"name": "devcon-davao-covid19-tracker-api",
"version": "1.0.0",
"description": "",
"engines": {
"node": "10.x"
},
"main": "index.js",
"scripts": {
"start": "npm run start:dev",
"start:dev": "cross-env NODE_ENV=development nodemon index.js",
"start:prod": "cross-env NODE_ENV=production nodemon index.js",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"commit": "npm run lint && git-cz"
},
"keywords": [],
"author": "Rene Padillo <rene@devcon.ph>",
"license": "MIT",
"dependencies": {
"dotenv": "^8.2.0",
"fastify": "^2.14.1",
"fastify-compress": "^2.0.1",
"fastify-cors": "^3.0.3",
"fastify-mongodb": "^2.0.0",
"fastify-plugin": "^1.6.1",
"fastify-rate-limit": "^3.0.1",
"fastify-swagger": "^2.6.0",
"make-promises-safe": "^5.1.0",
"module-alias": "^2.2.2",
"mongoose": "^5.9.25"
},
"devDependencies": {
"commitizen": "^4.1.2",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"nodemon": "^2.0.4",
"prettier": "2.0.5"
},
"_moduleAliases": {
"@": "."
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}