-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.59 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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "drpframework",
"version": "0.0.1-dev",
"description": "AltV Roleplay Framework",
"scripts": {
"build": "node ./scripts/organizer.js clear && tsc -p ./config/server.json && tsc -p ./config/client.json && npm run copy:meta && node ./scripts/organizer.js rename && npm run copy:html && npm run copy:server",
"build:server:watch": "tsc -w -p ./config/client.json",
"build:client:watch": "tsc -w -p ./config/server.json",
"copy:meta": "cd ./src && copyfiles resource.cfg ../dist/ && copyfiles ./config/**/* ../dist/",
"copy:html": "cd ./src && copyfiles ./html/**/* ../dist/",
"copy:server": "cd ./dist && copyfiles **/* ../../Server/resources/drp/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DRPFramework/DRPFramework.git"
},
"keywords": [
"AltV"
],
"author": "Draww",
"license": "GNU3",
"bugs": {
"url": "https://github.com/DRPFramework/DRPFramework/issues"
},
"homepage": "https://github.com/DRPFramework/DRPFramework#readme",
"dependencies": {},
"devDependencies": {
"@altv-drp/types-client": "^1.1.1",
"@altv-drp/types-natives": "^1.1.0",
"@altv-drp/types-server": "^1.4.4",
"@altv-drp/types-webview": "^1.0.2",
"@types/node": "^14.11.2",
"@types/sjcl": "^1.0.29",
"@types/vue": "^2.0.0",
"copyfiles": "^2.3.0",
"fs": "0.0.1-security",
"mariadb": "^2.4.2",
"prettier": "^2.1.2",
"sjcl": "^1.0.8",
"typeorm": "^0.2.26",
"typescript": "^4.0.3"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"bracketSpacing": true
}
}