generated from rammfall-edu/fastify-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
53
54
55
56
57
58
{
"name": "fastify-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "nodemon --exec npx babel-node src/server.js",
"start:db": "docker-compose up -d postgres",
"db:migrate": "npx sequelize db:migrate",
"db:undo": "npx sequelize db:migrate:undo:all",
"migration": "npx sequelize migration:create"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rammfall-edu/fastify-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rammfall-edu/fastify-template/issues"
},
"homepage": "https://github.com/rammfall-edu/fastify-template#readme",
"volta": {
"node": "16.15.0",
"npm": "8.10.0"
},
"engines": {
"node": "16.15.0",
"npm": "8.10.0"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/node": "^7.16.8",
"@babel/plugin-transform-modules-commonjs": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"babel-jest": "^28.1.0",
"jest": "^28.1.0",
"nodemon": "^2.0.15",
"prettier": "^2.6.2"
},
"prettier": {
"singleQuote": true
},
"dependencies": {
"@fastify/cookie": "^6.0.0",
"@fastify/cors": "^7.0.0",
"@fastify/multipart": "^6.0.0",
"bcrypt": "^5.0.1",
"fastify": "^3.28.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.3",
"sequelize": "^6.19.0",
"sequelize-cli": "^6.4.1"
}
}