-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
94 lines (94 loc) · 2.34 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": "tegg-cnode",
"version": "1.0.0",
"description": "CNodejs.org Powered By Tegg",
"private": false,
"egg": {
"typescript": true,
"declarations": true
},
"scripts": {
"autod": "autod",
"start": "egg-scripts start --title=tegg-cnode --env prod",
"startd": "egg-scripts start --daemon --title=tegg-cnode --env prod",
"stop": "egg-scripts stop --title=tegg-cnode",
"dev": "egg-bin dev",
"debug": "egg-bin debug",
"build": "npm run tsc",
"cov": "egg-bin cov -r tsconfig-paths/register --full-trace --reporter dot",
"clean": "ets clean",
"ci": "npm run lint && npm run cov",
"tsc": "ets && tsc -p tsconfig.json",
"test": "npm run lint && npm run test-local",
"test-local": "egg-bin test -r tsconfig-paths/register --full-trace --reporter dot",
"lint": "eslint . --ext .ts --fix",
"prettier": "prettier --write '**/*.{md,json,yaml}'"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{md,json}": [
"prettier --write"
],
"*.ts": [
"eslint --fix"
]
},
"dependencies": {
"@eggjs/tegg": "^0.2",
"@eggjs/tegg-config": "^0.2",
"@eggjs/tegg-controller-plugin": "^0.2",
"@eggjs/tegg-plugin": "^0.2",
"ajv": "^8.9.0",
"ajv-errors": "^3.0.0",
"ajv-formats": "^2.1.1",
"bcryptjs": "^2.4.3",
"dotenv": "^14.2.0",
"egg": "^2.33.1",
"egg-jwt": "^3.1.7",
"egg-mongoose": "^3.3.1",
"egg-redis": "^2.4.0",
"egg-scripts": "^2.15.2",
"egg-view-nunjucks": "^2.3.0",
"lodash.pick": "^4.4.0",
"tsconfig-paths": "^3.12.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@eggjs/tsconfig": "^1.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/mocha": "^2.2.40",
"@types/node": "^14.18.9",
"@types/supertest": "^2.0.0",
"autod": "^3.1.2",
"autod-egg": "^1.1.0",
"egg-bin": "^4.17.0",
"egg-mock": "^3.16.0",
"eslint": "^8.7.0",
"eslint-config-egg": "^10.0.0",
"lint-staged": "^10.1.2",
"prettier": "^2.0.4",
"typescript": "^4.5.5",
"yorkie": "^2.0.0"
},
"engines": {
"node": ">=16"
},
"ci": {
"type": "github",
"os": {
"github": "linux"
},
"version": "16"
},
"repository": {
"type": "git",
"url": ""
},
"eslintIgnore": [
"coverage"
],
"author": "Suyi <[email protected]>",
"license": "MIT"
}