-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1014 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1014 Bytes
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
{
"name": "tunnelforge",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"client:dev": "dotenv -e .env.development -- nodemon --exec ts-node src/client.ts",
"server:dev": "dotenv -e .env.development -- nodemon --exec ts-node src/server.ts",
"build": "tsc",
"client:prod": "dotenv -e .env -- node public/client.js",
"server:prod": "dotenv -e .env -- node public/server.js",
"test": "jest",
"doc": "typedoc"
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "",
"dependencies": {
"commander": "^13.0.0",
"dotenv-cli": "^8.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"semantic-release": "^22.0.12",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typedoc": "^0.27.6",
"typescript": "^5.7.2"
}
}