-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.79 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": "ruoyu_account",
"version": "0.0.8",
"description": "RuoYu Account",
"main": "app.js",
"scripts": {
"prebuild": "rimraf dist && rimraf static/js && rimraf static/css",
"build": "concurrently \"cd src && tsc\" \"cd static && tsc\" \"ts-node static/ts/auto\"",
"dev": "npm run build && concurrently \"cd src && tsc --watch\" \"cd static && tsc --watch\" \"nodemon dist/app\" \"cross-env NODE_WATCH=dev ts-node static/ts/auto\"",
"app": "node dist/app",
"start": "pm2 start ./pm2.json",
"stop": "pm2 stop ./pm2.json",
"restart": "pm2 restart ./pm2.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ry0513/RuoYu_Account.git"
},
"author": "RuoYu",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/ry0513/RuoYu_Account/issues"
},
"homepage": "https://github.com/ry0513/RuoYu_Account#readme",
"dependencies": {
"axios": "^1.3.3",
"connect-redis": "^6.1.3",
"dayjs": "^1.11.7",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-session": "^1.17.3",
"fs-extra": "^11.1.0",
"inquirer": "^8.2.5",
"joi": "^17.7.0",
"log4js": "^6.7.1",
"mysql2": "^3.0.1",
"redis": "^3.1.2",
"rxjs": "^5.5.12",
"sequelize-typescript": "^2.1.5",
"ua-parser-js": "^1.0.33"
},
"devDependencies": {
"@types/connect-redis": "^0.0.19",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/inquirer": "^8.2.5",
"@types/node": "^18.11.18",
"@types/ua-parser-js": "^0.7.36",
"@types/uglify-js": "^3.17.1",
"chokidar": "^3.5.3",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"nodemon": "^2.0.20",
"rimraf": "^5.0.0",
"sass": "^1.57.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"uglify-js": "^3.17.4"
}
}