-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
38 lines (38 loc) · 1.27 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
{
"name": "typescript-boilerplate",
"version": "0.0.1",
"description": "A basic boilerplate to get started using typescript with alt:V",
"main": "index.js",
"scripts": {
"build": "tsc -p tsconfig-server.json && tsc -p tsconfig-client.json && npm run copy:meta",
"build:server:watch": "tsc -w -p tsconfig-server.json",
"build:client:watch": "tsc -w -p tsconfig-client.json",
"copy:meta": "cd ./src && cpx resource.cfg ../resources/walkietalkie/ && cpx -v \"./client/**/*.!(ts)\" ../resources/walkietalkie/",
"copy:run": "npm run copy:meta && altv-server.exe"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AltV-Projects/TypeScript-Boilerplate.git"
},
"keywords": [
"typescript",
"alt:v",
"alt:V Multiplayer",
"gta5"
],
"author": "Mario Franze <mfranze@codingden.de>",
"license": "ISC",
"bugs": {
"url": "https://github.com/AltV-Projects/TypeScript-Boilerplate/issues"
},
"homepage": "https://github.com/AltV-Projects/TypeScript-Boilerplate#readme",
"devDependencies": {
"@altv/types-client": "^1.1.0",
"@altv/types-natives": "^1.1.0",
"@altv/types-server": "^1.2.0",
"@altv/types-webview": "^1.0.2",
"@types/node": "^13.13.12",
"cpx": "^1.5.0",
"typescript": "^3.9.5"
}
}