-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.38 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "electerm-cloud",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "npm run c",
"d": "vercel dev",
"v": "vercel --prod",
"b": "./bin/build",
"tb": "./bin/build-only",
"b1": "node bin/build-all.js",
"b2": "npm run bb",
"bs": "node bin/build-static.js",
"build": "echo \"ok\"",
"db": "./bin/init-local-dynamodb.sh",
"db-stop": "./bin/stop-local-dynamodb.sh",
"pub": "npm run b && vercel --prod",
"rm": "rm -rf public/ && mkdir public",
"c": "tsx -r dotenv/config bin/vite/dev-server.ts",
"s": "tsx -r dotenv/config bin/test-server.ts",
"bb": "NODE_ENV=production vite build --config bin/vite/conf.ts",
"lint": "./node_modules/.bin/ts-standard",
"fix": "./node_modules/.bin/ts-standard --fix",
"init": "node -r dotenv/config bin/admin-init.js",
"cdb": "node -r dotenv/config bin/admin-clear-db.js",
"adu": "node -r dotenv/config bin/admin-add-users.js",
"st": "node -r dotenv/config bin/admin-statics.js",
"cl": "node -r dotenv/config bin/admin-db-clean.js",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@ant-design/icons": "^5.6.1",
"@electerm/electerm-resource": "^2.0.10",
"@tsconfig/recommended": "^1.0.13",
"@types/basic-auth": "^1.1.8",
"@types/express": "^4.17.25",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/node": "^20.19.43",
"@types/pug": "^2.0.10",
"@types/react": "^18.3.31",
"@types/react-dom": "^18.3.7",
"@vercel/node": "^2.15.10",
"@vitejs/plugin-react": "^4.7.0",
"antd": "^5.29.3",
"classnames": "^2.5.1",
"dotenv": "^16.6.1",
"express": "^4.22.2",
"jest": "^29.7.0",
"manate": "^0.5.5",
"morgan": "^1.11.0",
"pug": "^3.0.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"stylus": "^0.63.0",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"ts-standard": "^12.0.2",
"tsx": "^4.22.4",
"typescript": "^5.9.3",
"vite": "^8.0.16",
"vite-plugin-commonjs": "^0.10.4"
},
"dependencies": {
"axios": "^1.18.0",
"basic-auth": "^2.0.1",
"dynamoose": "^4.2.0",
"jsonwebtoken": "^9.0.3",
"mongoose": "^7.8.9"
},
"standard": {
"sourceType": "module",
"ignore": [
"/public"
],
"global": [
"describe",
"it"
]
}
}