-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.37 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.37 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
{
"name": "graphqlapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"heroku-postbuild": "babel src --out-dir dist --copy-files",
"dev": "env-cmd -f ./src/config/dev.env nodemon ./src/index.js --ext js,graphql --exec babel-node",
"test": "env-cmd -f ./src/config/test.env jest --config jest.config.json --runInBand --detectOpenHandles",
"get-schema": "graphql get-schema -p prisma"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"env-cmd": "^10.0.1",
"eslint": "^6.6.0",
"eslint-plugin-graphql": "^3.1.0",
"jest": "^23.5.0",
"nodemon": "^1.19.4"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"apollo-boost": "^0.4.4",
"apollo-cache-inmemory": "^1.2.10",
"apollo-client": "^2.4.2",
"apollo-link": "^1.2.3",
"apollo-link-error": "^1.1.1",
"apollo-link-http": "^1.5.5",
"apollo-link-ws": "^1.0.9",
"apollo-utilities": "^1.0.21",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"bcryptjs": "^2.4.3",
"cross-fetch": "^3.0.4",
"graphql": "^0.13.2",
"graphql-cli": "^3.0.14",
"graphql-yoga": "^1.18.3",
"jsonwebtoken": "^8.5.1",
"prisma-binding": "^2.3.16",
"subscriptions-transport-ws": "^0.9.15"
}
}