-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.54 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
{
"name": "pixiviz-backend",
"version": "1.9.0",
"description": "Backend of Pixiviz",
"private": true,
"egg": {
"declarations": true
},
"dependencies": {
"axios": "^0.26.1",
"cross-env": "^7.0.3",
"egg": "^2.37.0",
"egg-cors": "^2.2.4",
"egg-logrotator": "^3.2.0",
"egg-redis": "^2.6.0",
"egg-scripts": "^2.17.0",
"egg-security": "^2.11.0",
"egg-validate": "^2.0.2",
"koa-compress": "^5.1.1",
"moment": "^2.30.1",
"qs": "^6.13.0",
"sensitive-word-tool": "^1.1.10"
},
"devDependencies": {
"autod": "^3.1.2",
"autod-egg": "^1.1.0",
"egg-bin": "^4.20.0",
"egg-ci": "^1.19.1",
"egg-mock": "^4.2.1",
"eslint": "^7.32.0",
"eslint-config-egg": "^9.0.0"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"start": "egg-scripts start --daemon --title=egg-server-pixivc-backend",
"start:docker-prod": "cross-env EGG_SERVER_ENV=prod IN_DOCKER=1 egg-scripts start",
"start:prod": "cross-env EGG_SERVER_ENV=prod npm start",
"stop": "egg-scripts stop --title=egg-server-pixivc-backend",
"dev": "egg-bin dev",
"debug": "egg-bin debug",
"gen:sensitive-dict": "node ./scripts/generateSensitiveDict.js",
"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",
"autod": "autod"
},
"ci": {
"version": "10"
},
"repository": {
"type": "git",
"url": ""
},
"author": "BackRunner",
"license": "MIT"
}