-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.66 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.66 KB
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
59
60
61
{
"name": "fastify_shopping_api",
"version": "1.0.0",
"description": "This project was bootstrapped with Fastify-CLI.",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest --runInBand --forceExit --colors --watchAll --coverage --verbose",
"start": "node app.js",
"dev": "nodemon app.js",
"migration:generate": "npx prisma migrate dev --create-only --name",
"migration:run": "npx prisma db push",
"format": "prettier-eslint --write \"src/**/*.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/auth": "^4.3.0",
"@fastify/autoload": "^5.0.0",
"@fastify/cors": "^8.2.0",
"@fastify/env": "^4.2.0",
"@fastify/sensible": "^4.1.0",
"@prisma/client": "^5.2.0",
"axios": "^1.5.0",
"bcrypt": "^5.1.1",
"casbin": "^5.16.0",
"casbin-prisma-adapter": "^1.4.0",
"casbin-sequelize-adapter": "^2.7.0",
"crypto-js": "^4.1.1",
"fast-jwt": "^3.2.0",
"fastify": "^4.0.0",
"fastify-casbin": "^3.1.1",
"fastify-casbin-rest": "^3.1.1",
"fastify-cli": "^4.4.0",
"fastify-plugin": "^3.0.0",
"http-status-codes": "^2.2.0",
"jest": "^29.6.4",
"ldapjs": "^3.0.5",
"moment": "^2.29.4",
"pino": "^8.8.0",
"prisma": "^5.2.0",
"ramda": "^0.29.0",
"rotating-file-stream": "^3.1.0",
"sequelize": "^6.33.0",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"nodemon": "^3.0.1",
"prettier": "3.0.3",
"prettier-eslint-cli": "^7.1.0"
},
"prisma": {
"schema": "./prisma/schema.prisma"
}
}