-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.99 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
58
59
60
{
"name": "worldofwarcraft_craftingprofitcalculator",
"version": "0.9.7",
"description": "An application to determine the profitability of a crafted item on the public auction house.",
"main": "dist/run.js",
"exports": "./index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"profile-def": "tsc --build tsconfig.json && node --prof -r dotenv/config ./dist/run.js",
"fill-cache": "tsc --build tsconfig.json && node -r dotenv/config ./dist/run.js --item 'simple wood'",
"clear-cache": "rm ./cache/cache.db",
"server": "tsc --build tsconfig.json && node -r dotenv/config ./dist/server.js",
"job-worker": "tsc --build tsconfig.json && node -r dotenv/config ./dist/run-worker.js",
"cli": "tsc --build tsconfig.json && node -r dotenv/config ./dist/run.js",
"client-server": "concurrently \"npm run server\" \"npm run job-worker\" \"cd client && npm start\"",
"build": "tsc --build tsconfig.json",
"prepack": "tsc --build tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hschimke/WorldOfWarcraft_CraftingProfitCalculator.git"
},
"keywords": [
"games",
"world",
"warcraft",
"crafting"
],
"author": "Henry Schimke",
"license": "MIT",
"bugs": {
"url": "https://github.com/hschimke/WorldOfWarcraft_CraftingProfitCalculator/issues"
},
"homepage": "https://github.com/hschimke/WorldOfWarcraft_CraftingProfitCalculator#readme",
"dependencies": {
"@types/uuid": "^8.3.4",
"compression": "^1.7.4",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"got": "^12.0.0",
"pg": "^8.7.1",
"redis": "^4.0.0-rc.4",
"sqlite3": "^5.0.2",
"typescript": "^4.5.4",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"yargs": "^17.2.1"
},
"type": "module",
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/express": "^4.17.13",
"@types/node": "^17.0.4",
"@types/pg": "^8.6.1",
"@types/sqlite3": "^3.1.7",
"@types/yargs": "^17.0.3",
"concurrently": "^6.3.0"
},
"types": "src/worldofwarcraft_craftingprofitcalculator.d.ts"
}