forked from DxCx/webpack-graphql-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.26 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "webpack-graphql-server",
"version": "0.2.1",
"description": "Starter kit for apollo GraphQL server using webpack and typescript",
"main": "dist/main.js",
"scripts": {
"build": "webpack",
"build:watch": "webpack --watch",
"pretest": "npm run build",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:notify": "npm run test:watch -- --notify",
"coverage": "npm test -- --coverage",
"coverage:notify": "npm run coverage -- --watch --notify",
"start": "npm run build && node dist/main.js",
"start:watch": "concurrently \"npm run build:watch\" \"node-dev dist/main.js\"",
"preupver": "npm test",
"upver": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DxCx/webpack-apollo-server.git"
},
"keywords": [
"apollo",
"backend",
"apollo-server",
"typescript",
"webpack",
"graphql",
"graphiql",
"express"
],
"author": "Hagai Cohen",
"license": "MIT",
"bugs": {
"url": "https://github.com/DxCx/webpack-apollo-server/issues"
},
"homepage": "https://github.com/DxCx/webpack-apollo-server#readme",
"dependencies": {
"@types/body-parser": "1.16.4",
"@types/cors": "2.8.1",
"@types/express": "^4.0.36",
"@types/helmet": "0.0.36",
"@types/morgan": "^1.7.32",
"body-parser": "^1.17.2",
"cors": "^2.8.4",
"express": "^4.15.4",
"graphql": "0.10.5",
"apollo-server-express": "^1.0.5",
"graphql-tools": "1.1.0",
"helmet": "^3.8.1",
"morgan": "^1.8.2"
},
"devDependencies": {
"@types/graphql": "^0.10.2",
"@types/jest": "^20.0.6",
"@types/node": "^8.0.19",
"awesome-typescript-loader": "^3.2.2",
"concurrently": "^3.5.0",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"node-dev": "^3.1.3",
"standard-version": "^4.2.0",
"ts-jest": "^20.0.10",
"tslint": "^5.6.0",
"tslint-loader": "^3.5.3",
"typescript": "2.4.2",
"webpack": "^3.4.1",
"webpack-node-externals": "^1.6.0"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"mapCoverage": true,
"testEnvironment": "node",
"testRegex": ".*\\.spec\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}
}