-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.86 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
{
"name": "@teamstarter/graphql-web-hook",
"version": "2.0.1",
"main": "./lib/index.js",
"bin": {
"gwh": "./lib/gwh.js"
},
"author": {
"email": "[email protected]",
"name": "Vincent Desmares",
"url": "https://twitter.com/VincentDesmares"
},
"files": [
"lib/**/*",
"migrations/*"
],
"license": "Apache-2.0",
"dependencies": {
"commander": "^7.2.0",
"cors": "^2.8.5",
"graphql": "^16.6.0",
"graphql-type-json": "^0.3.2",
"node-fetch": "^2.6.6",
"umzug": "^2.3.0",
"ws": "^8.11.0"
},
"devDependencies": {
"@apollo/client": "^3.7.3",
"@apollo/server": "^4.1.1",
"@types/cors": "^2.8.13",
"@types/graphql": "^14.5.0",
"@types/node-fetch": "^2.5.4",
"@types/react": "^18.0.26",
"@types/spdy": "^3.4.4",
"express": "^4.18.2",
"graphql-relay": "^0.10.0",
"@teamstarter/graphql-sequelize-generator": "8.3.0",
"jest": "^27.0.4",
"pm2": "^5.1.0",
"prettier": "^2.7.1",
"prettier-eslint": "^v13.0.0",
"prettier-tslint": "^0.4.2",
"spdy": "^4.0.2",
"sqlite3": "^5.1.4",
"standard-version": "^9.3.0",
"supertest": "^6.2.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.8.4",
"sequelize": "^6.3.5",
"graphql-sequelize": "^9.4.0"
},
"peerDependencies": {
"@apollo/client": "^3.7.3",
"@apollo/server": "^4.1.1",
"graphql": "^16.6.0",
"graphql-relay": "^0.10.0",
"@teamstarter/graphql-sequelize-generator": "8.3.0",
"graphql-sequelize": "^9.4.0",
"sequelize": "^6.3.5"
},
"scripts": {
"build": "tsc --lib es2019,dom --esModuleInterop --outDir ./lib ./src/**/*.ts ./src/*.ts",
"test": "PORT=3332 jest --runInBand --ci --forceExit --verbose",
"start": "node ./tests/server.js",
"gwh": "node ./lib/gwh.js",
"release": "standard-version"
}
}