-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.07 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.07 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "graphql-prisma",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --watch --runInBand",
"start:test": "NODE_ENV=test nodemon --exec ts-node ./src/index.ts -- -e test",
"dev": "NODE_ENV=dev nodemon --exec ts-node ./src/index.ts",
"start": "NODE_ENV=prod nodemon --exec ts-node ./src/index.ts -- -e prod",
"prisma:generate": "npx prisma generate",
"prisma:migrate": "npx prisma migrate dev --name init --schema=./src/prisma/schema.prisma"
},
"keywords": [],
"author": "",
"license": "ISC",
"jest": {
"globalSetup": "./__test__/jest/setup.ts",
"globalTeardown": "./__test__/jest/teardown.ts",
"preset": "ts-jest",
"testEnvironment": "node",
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/__test__/**/*.test.ts"
]
},
"devDependencies": {
"@types/bcrypt": "5.0.0",
"@types/command-line-args": "5.0.0",
"@types/jest": "26.0.23",
"@types/jsonwebtoken": "8.5.1",
"@types/ms": "0.7.31",
"@types/node": "15.0.2",
"@typescript-eslint/eslint-plugin": "4.22.1",
"@typescript-eslint/parser": "4.22.1",
"eslint": "7.26.0",
"jest": "27.0.4",
"prettier": "2.2.1",
"prisma": "2.22.1",
"ts-jest": "27.0.2",
"ts-node": "9.1.1",
"typegraphql-prisma": "0.14.1",
"typescript": "4.2.4"
},
"dependencies": {
"@paljs/plugins": "3.2.0",
"@prisma/client": "2.22.1",
"@types/graphql-fields": "1.3.3",
"apollo-boost": "0.4.9",
"apollo-server": "2.24.0",
"bcrypt": "5.0.1",
"class-validator": "0.13.1",
"command-line-args": "5.1.1",
"dotenv": "9.0.2",
"graphql": "15.5.0",
"graphql-fields": "2.0.3",
"graphql-scalars": "1.9.3",
"jsonwebtoken": "8.5.1",
"ms": "2.1.3",
"node-fetch": "2.6.1",
"reflect-metadata": "0.1.13",
"type-graphql": "1.1.1"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
}
}