-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.05 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.05 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
{
"name": "message",
"version": "1.0.0",
"description": "",
"private": true,
"egg": {
"declarations": true
},
"dependencies": {
"@faker-js/faker": "^8.3.1",
"bcryptjs": "^2.4.3",
"egg": "^3.17.5",
"egg-passport": "^2.1.1",
"egg-redis": "^2.5.0",
"egg-scripts": "2",
"egg-sequelize": "^6.0.0",
"egg-view-ejs": "^3.0.0",
"mysql2": "^3.6.5",
"passport-local": "^1.0.0"
},
"devDependencies": {
"egg-bin": "6",
"egg-mock": "5",
"eslint": "^8.56.0",
"eslint-config-egg": "13",
"sequelize-cli": "^6.6.2"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "egg-scripts start --daemon --title=egg-server-message",
"stop": "egg-scripts stop --title=egg-server-message",
"dev": "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": ""
},
"author": "",
"license": "MIT"
}