-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.52 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
{
"name": "graphql-prisma",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"start-local": "env-cmd -f ./config/prod.env node dist/index.js",
"heroku-postbuild": "babel src --out-dir dist --copy-files",
"dev": "env-cmd -f ./config/dev.env nodemon src/index.js --ext js,graphql --exec babel-node",
"test": "env-cmd -f ./config/test.env jest --watch --runInBand",
"generate": "graphql-codegen --config codegen.yml --dotenv config/dev.env"
},
"jest": {
"globalSetup": "./tests/config/globalSetup.js",
"globalTeardown": "./tests/config/globalTeardown.js"
},
"keywords": [],
"author": "Wendy",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.0",
"@babel/register": "^7.11.5",
"@graphql-codegen/cli": "^1.17.8",
"@graphql-codegen/schema-ast": "^1.17.8",
"@prisma/cli": "^2.6.2",
"jest": "^26.4.2",
"nodemon": "^2.0.4"
},
"dependencies": {
"@apollo/client": "^3.2.0",
"@babel/polyfill": "^7.11.5",
"apollo-boost": "^0.4.9",
"apollo-server": "^2.17.0",
"bcryptjs": "^2.4.3",
"cross-fetch": "^3.0.6",
"env-cmd": "^10.1.0",
"graphql": "^14.7.0",
"graphql-import": "^1.0.2",
"jsonwebtoken": "^8.5.1",
"prisma-binding": "^2.3.16",
"react": "^16.13.1"
}
}