-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.3 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
{
"name": "guild-announcement-api",
"version": "1.0.0",
"description": "",
"main": "./src/server.js",
"scripts": {
"start": "nodemon ./src/server.js",
"migrate": "node-pg-migrate",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.ts",
"prepare": "husky install",
"lintfix": "npm run lint -- --fix && prettier --write *.json *.md docs/*.md",
"seed": "node src/seed/seed.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"fastify": "^3.18.1",
"fastify-auth": "^1.1.0",
"fastify-basic-auth": "^2.1.0",
"fastify-cors": "^6.0.1",
"fastify-esso": "^1.2.3",
"fastify-jwt": "^3.0.1",
"fastify-plugin": "^3.0.0",
"fastify-postgres": "^3.5.0",
"node-pg-migrate": "^5.10.0",
"nodemon": "^2.0.10",
"pg": "^8.6.0"
},
"devDependencies": {
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2"
},
"lint-staged": {
"*.js": [
"npm run lintfix"
],
"*.{json,md}": [
"prettier --write"
]
}
}