-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "fastfy-node-epic",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "nodemon index.js | pino-pretty",
"debug": "nodemon --inspect index.js | pino-pretty",
"profile": "node --prof index | pino-pretty",
"dev": "npm run setup:db && nodemon index.js",
"migrate:tables": "node ./db/migrations/games-tables.js",
"reset:db": "node ./db/migrations/reset-db.js",
"setup:db": "npm run reset:db && npm run migrate:tables"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.8.0",
"dotenv": "^16.3.1",
"fastify": "^4.24.2",
"ioredis": "^5.3.2",
"pg": "^8.11.3",
"pino": "^8.16.2",
"pino-pretty": "^10.2.3",
"sequelize": "^6.36.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"eslint": "^8.51.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.1",
"nodemon": "^3.0.1",
"sequelize-cli": "^6.6.2"
}
}