-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·56 lines (56 loc) · 1.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
{
"name": "express-app-sample",
"version": "1.0.3",
"description": "",
"private": true,
"dependencies": {
"@midwayjs/bootstrap": "^2.3.0",
"@midwayjs/core": "^2.3.0",
"@midwayjs/decorator": "^2.3.0",
"@midwayjs/express": "^2.3.0",
"apollo-server-midway": "^1.4.2",
"graphql": "^15.5.1",
"type-graphql": "^1.1.1"
},
"devDependencies": {
"@midwayjs/cli": "^1.0.0",
"@midwayjs/luckyeye": "^1.0.0",
"@midwayjs/mock": "^2.3.0",
"@types/jest": "^26.0.10",
"@types/node": "14",
"cross-env": "^6.0.0",
"jest": "^26.4.0",
"mwts": "^1.0.5",
"ts-jest": "^26.2.0",
"typescript": "^4.0.0"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"start": "NODE_ENV=production node ./bootstrap.js",
"dev": "cross-env NODE_ENV=local midway-bin dev --ts",
"test": "midway-bin test --ts",
"cov": "midway-bin cov --ts",
"lint": "mwts check",
"lint:fix": "mwts fix",
"ci": "npm run cov",
"build": "midway-bin build -c",
"check": "luckyeye"
},
"midway-bin-clean": [
".vscode/.tsbuildinfo",
"dist"
],
"midway-luckyeye": {
"packages": [
"midway_v2"
]
},
"repository": {
"type": "git",
"url": ""
},
"author": "anonymous",
"license": "MIT"
}