forked from r-o-b-o-t-o/azerothcore-armory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.6 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
50
51
52
53
54
55
56
57
{
"name": "azerothcore-armory",
"version": "1.1.1",
"description": "",
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rimraf build/",
"start": "node --expose-gc build/armory/main.js",
"watch": "concurrently \"tsc -w --project .\" \"npm run nodemon\"",
"nodemon": "nodemon -q -w build -w config.json build/armory/main.js",
"lint": "eslint src/",
"prettier": "prettier . -w",
"fetchdata": "node build/tools/fetchdata.js",
"cleardata": "rimraf data/bone data/meta data/mo3 data/textures"
},
"author": "https://github.com/r-o-b-o-t-o",
"homepage": "https://github.com/r-o-b-o-t-o/azerothcore-armory",
"license": "MIT",
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/express": "^4.17.13",
"@types/glob": "^7.2.0",
"@types/mkdirp": "^1.0.2",
"@types/morgan": "^1.9.3",
"@types/node": "^18.0.0",
"@types/node-fetch": "^2.6.2",
"@types/pako": "^2.0.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"concurrently": "^7.2.2",
"eslint": "^8.18.0",
"nodemon": "^2.0.18",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"dependencies": {
"@supercharge/promise-pool": "^2.3.0",
"camelcase": "^6.3.0",
"cli-progress": "^3.11.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-handlebars": "^6.0.6",
"glob": "^8.0.3",
"handlebars-helpers": "^0.9.8",
"html-entities": "^2.3.3",
"mkdirp": "^1.0.4",
"morgan": "^1.10.0",
"mysql2": "^2.3.3",
"node-fetch": "^2.6.7",
"pako": "^2.0.4",
"pretty-ms": "^7.0.1",
"source-map-support": "^0.5.21",
"uuid": "^8.3.2",
"winston": "^3.8.0"
}
}