-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.89 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.89 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
{
"name": "tsbenchmark",
"version": "1.0.0",
"description": "123",
"private": true,
"egg": {
"typescript": true
},
"scripts": {
"build": "babel app --out-dir dist --copy-files",
"start": "egg-scripts start --daemon --title=egg-server-tsbenchmark",
"stop": "egg-scripts stop --title=egg-server-tsbenchmark",
"dev": "egg-bin dev",
"test-local": "egg-bin test -p",
"test": "npm run lint -- --fix && npm run test-local",
"cov": "egg-bin cov -p",
"ci": "npm run lint && npm run cov && npm run tsc && npm run clean",
"lint": "eslint . --ext .ts --cache",
"tsc": "tsc",
"clean": "tsc -b --clean"
},
"dependencies": {
"@eggjs/tegg": "^3.5.2",
"@eggjs/tegg-aop-plugin": "^3.5.2",
"@eggjs/tegg-config": "^3.2.3",
"@eggjs/tegg-controller-plugin": "^3.5.2",
"@eggjs/tegg-eventbus-plugin": "^3.5.2",
"@eggjs/tegg-plugin": "^3.5.2",
"@eggjs/tegg-schedule-plugin": "^3.5.2",
"egg": "^3.15.0",
"egg-di": "^1.2.1",
"egg-scripts": "^2.17.0",
"egg-tracer": "^2.0.0",
"fs": "^0.0.1-security",
"mddir": "^1.1.1",
"mysql": "^2.18.1",
"node-serialize": "^0.0.4",
"ramda": "^0.29.0",
"util": "^0.12.5"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/node": "^7.20.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/preset-env": "^7.21.4",
"@babel/register": "^7.21.0",
"@eggjs/tsconfig": "1",
"@types/mocha": "10",
"@types/node": "18",
"babel-cli": "^6.26.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"egg-bin": "^6.2.0",
"egg-mock": "5",
"eslint": "8",
"eslint-config-egg": "12",
"typescript": "4"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": ""
},
"author": "123",
"license": "MIT"
}