-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 2.14 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 2.14 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
{
"name": "usage-log-server",
"version": "1.0.0",
"description": " \r \r \r  \r [](https://github.com/SlimmiiProject/UsageLogServer/actions/workflows/dependency-review.yml)\r [](https://github.com/SlimmiiProject/UsageLogServer/actions/workflows/codeql-analysis.yml)",
"main": "index.js",
"scripts": {
"start": "npm run build && npm run server",
"start:dev": "concurrently --kill-others-on-fail \"npm run server:dev\" \"npm run client\"",
"client": "npm run start --prefix ./client",
"server": "npm run start --prefix ./server && npm run build:client",
"server:dev": "npm run start:dev --prefix ./server",
"build": "npm run build:server && npm run build:client && npm run client:merge",
"build:server": "npm run build --prefix ./server",
"build:client": "npm run build --prefix ./client",
"client:merge": "xcopy /e /v /y .\\client\\build\\ .\\server\\public\\",
"tsc": "tsc",
"start-linux": "npm run build-linux && npm run server",
"build-linux": "npm run build:server && npm run client-linux:merge ",
"client-linux:merge": "cp -r ./client/build/ ./server/public/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SlimmiiProject/UsageLogServer.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SlimmiiProject/UsageLogServer/issues"
},
"homepage": "https://github.com/SlimmiiProject/UsageLogServer#readme",
"dependencies": {
"axios": "^1.2.1",
"class-validator": "^0.13.2",
"python-shell": "^3.0.1",
"react-router-dom": "^6.4.3",
"typescript": "^4.7.3"
},
"devDependencies": {
"@types/jest": "^29.2.3"
}
}