-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "RNRS-v3-Backend",
"version": "1.0.0",
"description": "",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap \"test/**/*.test.js\"",
"start": "fastify start -l info app.js",
"dev": "fastify start -w -l debug -P -p 3030 app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deer-shark/RNRS-v3-Backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/deer-shark/RNRS-v3-Backend/issues"
},
"homepage": "https://github.com/deer-shark/RNRS-v3-Backend#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^9.0.2",
"fast-jwt": "^1.1.3",
"fastify": "^3.0.0",
"fastify-autoload": "^3.3.1",
"fastify-cli": "^2.11.0",
"fastify-cors": "^6.0.1",
"fastify-plugin": "^3.0.0",
"fastify-sensible": "^3.1.0",
"mysql2": "^2.2.5",
"sequelize": "^6.6.2",
"sequelize-fastify": "^1.0.7"
},
"devDependencies": {
"tap": "^14.11.0"
}
}