-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.19 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.19 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "hystime-server",
"version": "0.0.1",
"description": "GraphQL server for hystime",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.production.js",
"heroku-postbuild": "yarn run generate && yarn run build",
"dev": "webpack --config webpack.development.js",
"start": "node dist/server",
"lint": "eslint . --ext .ts",
"fmt": "eslint . --ext .ts --fix",
"generate": "graphql-codegen --config codegen.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hystime/hystime-server.git"
},
"author": "Zxilly",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Hystime/hystime-server/issues"
},
"engines": {
"node": "16.x"
},
"homepage": "https://github.com/Hystime/hystime-server#readme",
"devDependencies": {
"@graphql-codegen/add": "^3.1.0",
"@graphql-codegen/cli": "^2.3.0",
"@graphql-codegen/introspection": "2.1.0",
"@graphql-codegen/typescript": "2.4.1",
"@graphql-codegen/typescript-document-nodes": "2.2.1",
"@graphql-codegen/typescript-resolvers": "2.4.2",
"@types/faker": "^5.5.9",
"@types/node": "^17.0.4",
"@types/source-map-support": "^0.5.4",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"run-script-webpack-plugin": "^0.0.11",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0",
"webpackbar": "^5.0.2"
},
"resolutions": {
"graphql": "^16.2.0"
},
"dependencies": {
"@graphql-tools/schema": "^8.3.1",
"apollo-server": "^3.5.0",
"faker": "5.5.3",
"graphql": "^16.2.0",
"graphql-scalars": "1.14.1",
"graphql-tag": "^2.12.6",
"moment": "^2.29.1",
"mysql2": "^2.3.3",
"nanoid": "^3.1.30",
"opaqueid": "^1.2.0",
"source-map-support": "^0.5.21",
"typeorm": "^0.2.41"
}
}