-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
94 lines (94 loc) · 2.79 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
86
87
88
89
90
91
92
93
94
{
"name": "@teamstarter/graphql-sequelize-generator",
"version": "8.5.0",
"description": "A set of tools to easily generate a Graphql API from sequelize models.",
"keywords": [
"graphql",
"sequelize",
"generate",
"api",
"express"
],
"bin": {
"gsg": "./lib/gsg.js"
},
"main": "./lib/index.js",
"types": "./src/index.d.ts",
"repository": "[email protected]:teamstarter/graphql-sequelize-generator.git",
"author": "vincent desmares <[email protected]>",
"license": "BSD-3-Clause",
"engines": {
"node": ">=16.14.0"
},
"devDependencies": {
"@types/node": "^14.11.8",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"babel-eslint": "^10.0.3",
"cors": "^2.8.5",
"dataloader-sequelize": "^2.1.2",
"eslint": "6.6.0",
"eslint-config-prettier": "^6.4.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-standard": "^4.0.0",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-relay": "^0.10.0",
"graphql-sequelize": "^9.5.1",
"jest": "^24.9.0",
"prettier": "^2.7.1",
"prettier-eslint": "^v13.0.0",
"prettier-tslint": "^0.4.2",
"sequelize": "6.28.0",
"sequelize-cli": "^6.2.0",
"spdy": "^3.4.7",
"sqlite3": "^5.1.6",
"standard-version": "^6.0.1",
"supertest": "^3.0.0",
"ts-migrate": "^0.1.7",
"ts-node": "^10.9.2",
"ts-node-dev": "^1.0.0-pre.63",
"umzug": "^2.1.0"
},
"scripts": {
"test": "NODE_ENV=test DEBUG=-* PORT=8282 node ./node_modules/.bin/jest -i",
"test-watch": "DEBUG=* PORT=8282 jest -i -u --watch",
"lint-check": "eslint src",
"start": "rm -f ./src/tests/data/main.db && DEBUG=gsg node ./src/tests/testServer.js",
"build": "rm -rf ./lib/* && tsc --lib es2019,dom --esModuleInterop --downlevelIteration --outDir ./lib ./src/index.ts ./src/scripts/*.ts ./src/gsg.ts",
"release": "standard-version",
"gsg": "node ./lib/gsg.js"
},
"peerDependencies": {
"graphql": "^16.6.0",
"graphql-relay": "^0.10.0",
"graphql-sequelize": "^9.5.1",
"sequelize": "6.28.0"
},
"dependencies": {
"@apollo/server": "^4.1.1",
"@graphql-tools/schema": "^9.0.10",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.14",
"@types/express-serve-static-core": "^4.17.31",
"@typescript-eslint/parser": "^4.5.0",
"axios": "^0.24.0",
"commander": "^7.2.0",
"debug": "^4.1.1",
"graphql-subscriptions": "^1.1.0",
"graphql-ws": "^5.11.2",
"typescript": "^4.8.4",
"ws": "^8.11.0"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/"
},
"resolutions": {
"@types/serve-static": "1.13.9"
}
}