-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
72 lines (72 loc) · 2.38 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
{
"name": "windy10v10ai",
"private": true,
"scripts": {
"postinstall": "node src/scripts/install.js",
"launch": "node src/scripts/launch.js",
"predeploy": "node src/scripts/deploy.js",
"build": "run-p build:*",
"build:panorama": "node --preserve-symlinks node_modules/webpack/bin/webpack.js --config src/panorama/webpack.prod.js",
"build:vscripts": "tstl --project src/vscripts/tsconfig.json",
"dev": "run-p dev:*",
"dev:panorama": "node --preserve-symlinks node_modules/webpack/bin/webpack.js --config src/panorama/webpack.dev.js --watch",
"dev:vscripts": "tstl --project src/vscripts/tsconfig.json --watch",
"start": "npm run launch && npm run dev",
"test": "jest",
"prettier-check": "prettier --check .",
"lint": "eslint --ext .js,.ts,.tsx \"./src/**/*.{js,ts,tsx}\"",
"lint:fix": "eslint --ext .js,.ts,.tsx --fix \"./src/**/*.{js,ts,tsx}\""
},
"devDependencies": {
"@moddota/dota-lua-types": "^4.35.0",
"@moddota/find-steam-app": "^1.1.0",
"@moddota/panorama-types": "^1.34.0",
"@types/jest": "^29.5.14",
"@types/react": "^16.14.5",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.19.0",
"babel-loader": "^9.2.1",
"easy-keyvalues": "^1.2.7",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^5.2.1",
"fs-extra": "^11.3.0",
"jest": "^29.7.0",
"less-loader": "^11.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"react": "^16.14.0",
"react-panorama-x": "^0.4.0",
"replace-in-file-webpack-plugin": "^1.0.6",
"terser-webpack-plugin": "^5.3.4",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^4.8.4",
"typescript-to-lua": "^1.10.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-panorama-x": "^0.4.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleNameMapper": {
"^@utils/(.*)$": "<rootDir>/src/panorama/react/utils/$1"
},
"globals": {
"ts-jest": {
"tsconfig": "src/vscripts/tsconfig.json"
}
},
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/",
"/build/"
]
}
}