forked from ModDota/TypeScriptDeclarations
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.73 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.73 KB
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
61
62
63
64
65
66
67
68
69
70
71
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "run-p build:*",
"build:tsc": "tsc -b packages",
"build:types": "ts-node-script build",
"check-generated": "node scripts/check-generated.js",
"dev": "run-p dev:*",
"dev:tsc": "tsc -b packages --watch",
"dev:types": "nodemon",
"lint": "run-s lint:*",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"prepublishOnly": "yarn build",
"test": "tsc -b test"
},
"nodemonConfig": {
"delay": 500,
"exec": "ts-node-script --transpile-only build",
"ext": "ts,json",
"ignoreRoot": [
".git"
],
"watch": [
"build",
"node_modules/dota-data/files/vscripts",
"node_modules/dota-data/files/panorama",
"node_modules/dota-data/files/events.json"
]
},
"prettier": {
"printWidth": 100,
"proseWrap": "always",
"singleQuote": true,
"trailingComma": "all",
"overrides": [
{
"files": "packages/*/types/**/*",
"options": {
"printWidth": 120
}
}
]
},
"devDependencies": {
"@ark120202/eslint-config": "^2.5.0",
"@ark120202/typescript-config": "^2.2.0",
"@moddota/dota-data": "^0.28.0",
"@types/fs-extra": "^9.0.4",
"@types/lodash": "^4.14.165",
"@types/node": "^14.14.7",
"@types/prettier": "^2.1.5",
"@types/wordwrap": "^1.0.0",
"dts-dom": "^3.6.0",
"eslint": "^7.13.0",
"fs-extra": "^9.0.1",
"lerna": "^4.0.0",
"lodash": "^4.17.20",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"ts-node": "9.0.0",
"typescript": "^4.0.5",
"typescript-to-lua": "0.42.0",
"wordwrap": "^1.0.0"
},
"version": "0.1.0"
}