-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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-graphql-prisma-boilerplate",
"version": "1.0.0",
"description": "A boilerplate for a backend GraphQL project",
"main": "index.js",
"scripts": {
"generate": "ts-node --transpile-only src/api/schema",
"test": "npm run generate && dotenv -e .dev-env -- jest --watchAll --runInBand",
"init-local-db": "dotenv -e .dev-env -- npx ts-node src/index.ts",
"start": "npx ts-node src/index.ts",
"dev": "ts-node-dev --transpile-only --no-notify src/api/index.ts",
"build": "tsc"
},
"author": "Andrew Martinez",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.0.2",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-plugin-graphql": "^4.0.0",
"get-port": "^5.1.1",
"graphql-request": "^3.4.0",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"prisma": "^2.22.1",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
},
"dependencies": {
"@prisma/client": "^2.22.1",
"apollo-server": "^2.24.0",
"dotenv": "^9.0.0",
"graphql": "^15.5.0",
"nexus": "^1.0.0"
},
"jest": {
"preset": "ts-jest",
"globals": {
"ts-jest": {
"diagnostics": {
"warnOnly": true
}
}
},
"testEnvironment": "node"
}
}