-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.12 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
{
"name": "nexus-tutorial",
"version": "0.0.0",
"private": true,
"author": "Flavian DESVERNE",
"description": "Final code of the Nexus tutorial",
"license": "MIT",
"keywords": [],
"dependencies": {
"@prisma/client": "2.12.1",
"apollo-server": "2.19.0",
"graphql": "15.4.0",
"nexus": "1.0.0",
"nexus-plugin-prisma": "0.27.0"
},
"devDependencies": {
"@prisma/cli": "2.12.1",
"@types/jest": "25.2.3",
"@types/pg": "7.14.7",
"get-port": "5.1.1",
"graphql-request": "3.3.0",
"jest": "25.5.4",
"nanoid": "3.1.10",
"pg": "8.5.1",
"prettier": "2.0.5",
"ts-jest": "25.5.1",
"ts-node-dev": "1.0.0",
"typescript": "4.1.2"
},
"prettier": {
"singleQuote": true,
"semi": false
},
"scripts": {
"dev": "ts-node-dev --transpile-only --no-notify api/app",
"build": "tsc",
"generate": "ts-node --transpile-only api/schema",
"test": "npm run generate && jest"
},
"jest": {
"preset": "ts-jest",
"globals": {
"ts-jest": {
"diagnostics": {
"warnOnly": true
}
}
},
"testEnvironment": "node"
}
}