forked from liron-navon/graphql-ts-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.73 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.73 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
{
"name": "graphql-ts-tutorial",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "",
"license": "ISC",
"scripts": {
"dev": "NODE_ENV=development concurrently --kill-others-on-fail 'webpack --watch' 'npm run start:watch:delay'",
"build": "webpack",
"start": "node ./dist/server.js",
"start:watch": "nodemon --watch dist -e js,ts,graphql,json --exec 'npm run start'",
"start:watch:delay": "wait-on --delay 10000 ./dist/server.js && npm run start:watch",
"generate-typedefs": "npm run create-schema && npm run create-types",
"create-schema": "graphql get-schema",
"create-types": "graphql-schema-typescript --namespace=GQL --global=true --typePrefix='' generate-ts --output=src/__typedefs/graphqlTypes.d.ts src/__typedefs"
},
"dependencies": {
"acorn": "^6.0.0",
"apollo": "^2.3.1",
"apollo-server": "^2.3.3",
"bcrypt": "^3.0.3",
"core-js": "3.0.0-beta.11",
"cors": "^2.8.5",
"express": "^4.16.4",
"graphql-scalar-types": "^2.0.0",
"graphql-tools": "^4.0.4",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.11",
"lowdb": "^1.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/graphql": "^14.0.0",
"@types/jsonwebtoken": "^8.3.0",
"@types/node": "^10.12.20",
"clean-webpack-plugin": "^1.0.1",
"concurrently": "^4.1.0",
"graphql": "^14.0.2",
"graphql-schema-typescript": "^1.2.8",
"nodemon": "^1.18.9",
"ts-loader": "^4.5.0",
"tslint": "^5.12.1",
"tslint-config-airbnb": "^5.11.1",
"tslint-loader": "^3.5.4",
"typescript": "^3.0.3",
"wait-on": "^3.2.0",
"webpack": "^4.29.0",
"webpack-command": "^0.4.2",
"webpack-node-externals": "^1.7.2"
}
}