-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "d20-indexer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"start:dev": "nodemon --exec ts-node src/index.ts",
"start:dev:inspect": "nodemon --exec node --inspect -r ts-node/register src/index.ts",
"prepare": "husky install",
"build": "tsc",
"start": "node --max_old_space_size=16384 dist/src/index.js"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/he": "^1.2.0",
"axios": "^1.4.0",
"cheerio": "^1.0.0-rc.12",
"decimal.js": "^10.4.3",
"dotenv": "^16.0.3",
"googleapis": "^118.0.0",
"he": "^1.2.0",
"redis": "^4.6.11"
},
"devDependencies": {
"@types/decimal.js": "^7.4.0",
"@types/jest": "^29.5.1",
"@types/redis-mock": "^0.17.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"nodemon": "^3.0.2",
"prettier": "2.8.8",
"redis-mock": "^0.56.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}