-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "backend-kat",
"version": "0.0.1",
"private": true,
"main": "app/index.js",
"scripts": {
"prisma": "pnpify prisma",
"migrate": "yarn sequelize db:migrate",
"pretest": "NODE_ENV=test yarn sequelize db:migrate",
"test": "yarn pretest && yarn jest && yarn posttest",
"posttest": "NODE_ENV=test yarn sequelize db:migrate:undo:all",
"lint": "yarn eslint --ext \".js\" --ignore-path .gitignore --ignore-path .eslintignore ./app",
"watch": "yarn nodemon",
"start": "node app/index.js",
"dev": "yarn nodemon"
},
"dependencies": {
"@google-cloud/storage": "^5.8.5",
"@prisma/client": "2.28.0",
"@yarnpkg/pnpify": "^3.0.0-rc.14",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"formidable": "^1.2.2",
"jsonwebtoken": "^8.5.1",
"mariadb": "^2.5.3",
"node-fetch": "^2.6.1",
"sequelize": "^6.6.2",
"sequelize-cli": "^6.2.0"
},
"devDependencies": {
"eslint": "^7.27.0",
"jest": "^27.0.3",
"nodemon": "^2.0.7",
"prisma": "2.28.0",
"supertest": "^6.1.3"
},
"resolutions": {
"@prisma/client/.prisma": "link:.prisma"
}
}