-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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
{
"name": "d2c-panda-wish",
"version": "2.0.0",
"description": "Generate a JSON wishlist from PandaPaxxy's god roll Google Sheet (for use on D2Checklist.com, or wherever you want)",
"nodemonConfig": {
"watch": [
"src/**/*.ts"
],
"delay": "150"
},
"scripts": {
"start": "npm run build:live",
"build": "tsc -p .",
"build:live": "nodemon --exec ts-node src/index.ts",
"exec": "node dist/index.js",
"once": "npm run build && npm run exec",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dcaslin/d2c-panda-wish.git"
},
"keywords": [
"destiny",
"wishlist",
"dimwishlist"
],
"author": "Dave Caslin",
"license": "MIT",
"bugs": {
"url": "https://github.com/dcaslin/d2c-panda-wish/issues"
},
"homepage": "https://github.com/dcaslin/d2c-panda-wish#readme",
"dependencies": {
"@types/node": "^14.0.5",
"axios": "^0.19.2",
"csvtojson": "^2.0.10",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/csvtojson": "^1.1.5",
"@types/lodash": "^4.14.152",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"eslint": "^7.1.0",
"nodemon": "^2.0.4",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
}
}