-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.71 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
{
"name": "prisma-template",
"version": "1.0.0",
"description": "A starting point for projects that want to use Prisma to talk to the database",
"main": "index.ts",
"scripts": {
"start": "npm i && npm run prisma-reset && npm run codegen && nodemon src/index.ts",
"test": "jest -c jest.config.unit.js",
"itest": "jest -c jest.config.integration.js --runInBand",
"build": "tsc",
"prisma-migrate-dev": "prisma migrate dev",
"prisma-reset": "prisma migrate reset --force",
"prisma-studio": "prisma studio",
"prisma-seed": "prisma db seed",
"codegen": "prisma generate",
"prisma-create-seed": "ts-node src/db/seeds/utils/createSeed/script.ts",
"ts": "tsc --noEmit",
"lint": "eslint .",
"postinstall": "husky install"
},
"prisma": {
"schema": "src/db/schema.prisma",
"seed": "ts-node --files src/db/seeds/seed.ts"
},
"keywords": [
"prisma",
"typescript"
],
"author": "Vlady Veselinov and Sasho Savov",
"license": "MIT",
"dependencies": {
"dotenv": "10.0.0",
"@prisma/client": "5.2.0",
"prisma": "5.2.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"@types/node": "17.0.8",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"cross-env": "7.0.3",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"jest": "27.4.3",
"lint-staged": "11.1.2",
"nodemon": "2.0.15",
"prettier": "2.5.1",
"prettier-eslint": "13.0.0",
"ts-node": "10.4.0",
"typescript": "4.5.4"
}
}