-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.14 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
{
"type": "module",
"license": "MIT",
"scripts": {
"build": "tsc",
"watch": "tsc --watch --assumeChangesOnlyAffectDirectDependencies --preserveWatchOutput",
"pretty": "prettier --write \"**/*.{js,ts,tsx,scss,html,json}\"",
"lint": "eslint --fix src --ext .js,.ts,.tsx",
"diff": "node --experimental-specifier-resolution=node --no-warnings built/findDifferentStrings.js",
"patcher": "node --experimental-specifier-resolution=node --no-warnings built/patcherExample.js"
},
"dependencies": {
"@d2api/manifest": "^1.0.1",
"@d2api/manifest-patcher": "^1.0.0",
"@types/fs-extra": "^9.0.1",
"@types/lodash": "^4.14.161",
"@types/node": "^14.0.1",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"bungie-api-ts": "^4.2.0",
"cross-fetch": "^3.0.6",
"fs": "^0.0.1-security",
"fs-extra": "^9.0.1",
"lodash": "^4.17.20",
"prettier-plugin-organize-imports": "^1.1.1",
"typescript": "^3.9.2",
"util": "^0.12.3"
},
"devDependencies": {
"eslint": "^7.0.0",
"husky": "^2.4.1",
"prettier": "^2.0.5",
"pretty-quick": "^1.11.1"
}
}