-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 loc) · 1 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
{
"name": "fastify-base-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon --watch ./ --watch .env",
"start:prod": "node index.js",
"lint": "npm run lint:standard",
"lint:fix": "standard --fix",
"lint:standard": "standard --verbose"
},
"author": "",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"fastify": "^2.15.3",
"fastify-auth": "^0.5.0",
"fastify-helmet": "^3.0.1",
"fastify-mongoose": "^0.2.1",
"fastify-swagger": "^5.2.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^5.12.2"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-standard": "^16.0.1",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"nodemon": "^2.0.20",
"snazzy": "^9.0.0",
"standard": "^16.0.1"
}
}