-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.06 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.06 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
{
"name": "gitea-drone",
"version": "1.0.0",
"description": "",
"private": true,
"egg": {
"declarations": true
},
"dependencies": {
"axios": "^1.9.0",
"chalk": "^4.1.2",
"crypto-js": "^4.2.0",
"egg": "^3.17.5",
"egg-cors": "^3.0.1",
"egg-passport": "^2.1.1",
"egg-scripts": "2",
"module-alias": "^2.2.3",
"mysql2": "^3.14.2",
"uuid": "^10.0.0"
},
"devDependencies": {
"egg-bin": "6",
"egg-mock": "5",
"eslint": "8",
"eslint-config-egg": "13"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "egg-scripts start --title=gitea-drone",
"stop": "egg-scripts stop --title=gitea-drone",
"dev": "egg-bin dev",
"prod": "NODE_ENV=production egg-bin dev",
"test": "npm run lint -- --fix && npm run test:local",
"test:local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint .",
"ci": "npm run lint && npm run cov"
},
"repository": {
"type": "git",
"url": ""
},
"_moduleAliases": {
"@": "."
},
"author": "",
"license": "MIT"
}