-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.34 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": "wju",
"version": "1.0.0",
"description": "WJU Derivation Game",
"main": "index.js",
"scripts": {
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 src/views/* src/views/**/* src/public/* src/public/**/* dist/ && copyfiles package*.json dist/",
"build": "npm run clean && tsc --project tsconfig.json && tsc-alias -p tsconfig.json && npm run copy-files",
"start": "node -r ts-node/register -r tsconfig-paths/register src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imlinhanchao/WJU.git"
},
"keywords": [
"WJU"
],
"author": "Hancel.Lin",
"license": "MIT",
"bugs": {
"url": "https://github.com/imlinhanchao/WJU/issues"
},
"homepage": "https://github.com/imlinhanchao/WJU#readme",
"dependencies": {
"ejs": "^3.1.10",
"express": "^5.1.0",
"express-session": "^1.18.2",
"fishpi": "^0.1.4",
"mysql": "^2.18.1",
"reflect-metadata": "^0.2.2",
"session-file-store": "^1.5.0",
"typeorm": "^0.3.27"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/express-session": "^1.18.2",
"@types/node": "^24.9.1",
"@types/session-file-store": "^1.2.5",
"copyfiles": "^2.4.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3"
}
}