-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 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
{
"name": "graphql-workshop",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "tsc",
"start": "node public/index.js",
"dev": "nodemon --delay 500ms --watch src src/index.ts --exec babel-node --extensions=\".ts,.js\" -e js,ts,gql",
"build": "babel src/schema -d public/schema --copy-files && babel src -d public --extensions=\".ts,.js\"",
"knex": "knex",
"table": "ts-node framework/generate_table_cli.ts",
"graph": "ts-node framework/generate_graph_type.ts",
"file": "ts-node framework/generate_file.ts",
"ts-node": "ts-node"
},
"packageManager": "[email protected]",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.10.4",
"@babel/polyfill": "^7.12.1",
"@graphql-tools/schema": "^10.0.6",
"@types/body-parser": "^1.19.5",
"@types/graphql-upload": "^16.0.7",
"body-parser": "^1.20.2",
"commander": "^12.1.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dataloader": "^2.2.2",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"fs": "0.0.1-security",
"glob": "^11.0.0",
"graphql": "^16.9.0",
"graphql-redis-subscriptions": "^2.6.1",
"graphql-subscriptions": "^2.0.0",
"graphql-type-json": "^0.3.2",
"graphql-upload": "^16.0.2",
"graphql-ws": "^5.16.0",
"ioredis": "^5.4.1",
"knex": "^3.1.0",
"moment": "^2.30.1",
"moment-timezone": "^0.5.45",
"mysql2": "^3.10.3",
"nodemon": "^3.1.4",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"subscriptions-transport-ws": "^0.11.0",
"ts-node": "^10.9.2",
"ws": "^8.18.0"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.24.9",
"@babel/node": "^7.24.8",
"@babel/plugin-proposal-async-generator-functions": "^7.20.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-export-default-from": "^7.24.7",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-typescript": "^7.24.8",
"@babel/preset-env": "^7.24.8",
"@babel/preset-typescript": "^7.24.7",
"@types/node": "^20.14.11",
"babel-plugin-module-resolver": "^5.0.2",
"typescript": "^5.5.3"
}
}