-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 917 Bytes
/
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
{
"name": "scrape",
"version": "0.0.1",
"description": "Service to scrape unreleased cards to db",
"source": "src/app.ts",
"main": "dist/app.js",
"repository": "[email protected]:j0sh77/hearthbot-api.git",
"author": "Josh <[email protected]>",
"license": "MIT",
"dependencies": {
"dotenv": "^16.0.1",
"jest": "^29.0.1",
"jsdom": "^20.0.0",
"simple-node-logger": "^21.8.12",
"typescript": "^4.7.4",
"winston": "^3.8.1",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/jsdom": "^20.0.0",
"@types/winston": "^2.4.4",
"esbuild": "^0.15.5",
"nodemon": "^2.0.19",
"ts-node": "^10.9.1"
},
"scripts": {
"clean": "rm -rf dist",
"build": "node esbuild.js",
"start": "node dist/app.js",
"dev": "NODE_ENV='development' nodemon --ignore '*.test.ts' src/app.ts",
"test": "jest"
}
}