forked from kui/7dtd-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·60 lines (60 loc) · 1.85 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
52
53
54
55
56
57
58
59
60
{
"name": "7dtd-map",
"version": "1.0.0",
"description": "Map renderer for 7 Days to Die",
"private": true,
"scripts": {
"dev-server": "webpack serve --mode development --static-directory docs",
"build": "run-p build:**",
"build:ts": "webpack --mode production",
"build:json": "ts-node --files ./tools/generate-block-index.ts",
"build:prefab-html": "ts-node --files ./tools/generate-prefab-html.ts",
"fix": "run-s fix:**",
"fix:prettier": "prettier --write .",
"fix:eslint": "eslint --ext .ts --fix .",
"lint": "run-p lint:**",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint --ext .ts .",
"lint:tsc:src": "tsc -p src",
"lint:tsc:tools": "tsc -p tools",
"test": "jest --config src/jest.config.ts",
"ci": "run-p lint test"
},
"author": "Keiichiro UI",
"license": "MIT",
"devDependencies": {
"@types/bunyan": "^1.8.8",
"@types/bunyan-format": "^0.2.5",
"@types/css-font-loading-module": "0.0.7",
"@types/jest": "^28.1.7",
"@types/node": "^18.7.6",
"@types/pngjs": "^6.0.1",
"@types/three": "^0.143.1",
"@types/webpack": "^5.28.0",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"bunyan": "^1.8.15",
"bunyan-format": "^0.2.1",
"csv-parse": "^5.3.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"glob": "^8.0.3",
"glob-promise": "^5.0.0",
"idb": "^7.0.2",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"npm-run-all": "^4.1.5",
"pngjs": "^6.0.0",
"prettier": "^2.7.1",
"three": "^0.143.0",
"ts-jest": "^28.0.8",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.0",
"xml2js": "^0.4.23"
}
}