-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.24 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "xianxia-game",
"version": "1.0.14",
"description": "xianxia-game",
"private": true,
"main": "index.tsx",
"scripts": {
"build": "rm -rf dist/ && node esbuild.build.config.js",
"start": "node esbuild.run.config.js",
"lint": "eslint --max-warnings 0 --ext=ts,tsx src --cache",
"lint:ci": "eslint --max-warnings 0 --ext=ts,tsx src",
"lint:fix": "eslint --ext=ts,tsx src --fix --cache",
"ts-errors": "rm -rf build/ && cross-env TSC_NONPOLLING_WATCHER=1 tsc --watch --pretty",
"ts-errors:ci": "rm -rf build/ && tsc --pretty",
"test": "tap --no-coverage",
"test:watch": "tap --watch --no-coverage-report --no-check-coverage",
"check": "pnpm run lint && pnpm run ts-errors:ci && pnpm test"
},
"repository": {
"type": "git",
"url": "git+git@github.com:ArcanisCz/xianxia-game.git"
},
"author": "ArcanisCz",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/ArcanisCz/xianxia-game/issues"
},
"homepage": "https://github.com/ArcanisCz/xianxia-game#readme",
"tap": {
"ts": true,
"timeout": 60000,
"test-regex": ".+\\.spec\\.ts$",
"color": true
},
"devDependencies": {
"@craftamap/esbuild-plugin-html": "0.4.0",
"@types/lodash": "4.14.195",
"@types/node": "16",
"@types/react": "18.2.12",
"@types/react-dom": "18.2.5",
"@types/tap": "15.0.8",
"@typescript-eslint/eslint-plugin": "5.59.11",
"@typescript-eslint/parser": "5.59.11",
"cross-env": "7.0.3",
"esbuild": "0.16.17",
"esbuild-css-modules-plugin": "2.7.1",
"esbuild-plugin-dev-server": "1.1.3",
"eslint": "8.42.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-mobx": "0.0.9",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"prettier": "2.8.8",
"tap": "16.3.6",
"ts-node": "10.9.1",
"tsx": "3.12.7",
"typescript": "4.9.5",
"typescript-plugin-css-modules": "4.2.3",
"webpack": "5.86.0"
},
"dependencies": {
"classnames": "2.3.2",
"lodash": "4.17.21",
"mobx": "6.9.0",
"mobx-react": "7.6.0",
"mobx-utils": "6.0.6",
"react": "18.2.0",
"react-dom": "18.2.0"
}
}