-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
103 lines (103 loc) · 4.5 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "cyberpunk2077",
"version": "0.11.2",
"description": "Cyberpunk 2077 modding support for the Vortex mod manager, as user-friendly and helpful as possible.",
"homepage": "https://www.nexusmods.com/site/mods/196",
"repository": "https://github.com/E1337Kat/cyberpunk2077_ext_redux",
"bugs": "https://github.com/E1337Kat/cyberpunk2077_ext_redux/issues",
"main": "./dist/index.js",
"scripts": {
"prepare": "husky install",
"pre-commit": "lint-staged",
"post-commit": "npm run pack-dev && npm run test",
"postinstall": "patch-package",
"clean": "rm *.7z && rm ./dist/*",
"clear-caches": "jest --clearCache",
"lint": "eslint -c .eslintrc.build.json src test",
"lint-fix": "eslint -c .eslintrc.build.json --fix src test && prettier --write",
"test": "jest --no-cache --verbose=true --silent=false",
"test-debug": "jest --clearCache && node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --verbose=true --silent=false --no-cache",
"_asset-copy": "extractInfo && copyfiles -f ./LICENSE ./*.png ./*.jpg ./dist/",
"_pack-script": "pwsh.exe ./script/package.ps1",
"_pack-script-linux": "bash ./script/package.sh",
"_pack-script-dev": "pwsh.exe ./script/package.ps1 -Dev",
"_pack-script-dev-linux": "bash ./script/package.sh -dev",
"webpack": "node ./node_modules/webpack/bin/webpack --config webpack.config.js --color",
"webpack-debug": "V2077_DEBUG=1 node ./node_modules/webpack/bin/webpack --config webpack.config.js --color --stats verbose --analyze --progress",
"build": "npm run webpack && npm run _asset-copy",
"build-debug": "npm run webpack-debug && npm run _asset-copy",
"pack": "npm run test && npm run build && npm run _pack-script",
"pack-debug": "npm run test && npm run build-debug && npm run _pack-script",
"pack-dev": "npm run build && npm run _pack-script-dev",
"pack-dev-debug": "npm run build-debug && npm run _pack-script-dev",
"pack-linux": "npm run test && npm run build && npm run _pack-script-linux",
"pack-dev-linux": "npm run build && npm run _pack-script-dev-linux",
"dump-schemas": "ts-node -T ./script/dump-schemas.ts",
"repl": "ts-node -r tsconfig-paths/register"
},
"author": "KellieAtTheLab",
"contributors": [
"Ellie (http://🍆💦🍑😩.ws//)",
"Auska (https://github.com/effs)",
"Bladehawke (https://github.com/Bladehawke)",
"ThunderGod (https://github.com/thundergod97)"
],
"license": "GPL-3.0",
"peerDependencies": {
"vortex-api": "github:Nexus-Mods/vortex-api",
"exe-version": "github:Nexus-Mods/node-exe-version"
},
"devDependencies": {
"@jest/types": "^27.5.1",
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.1",
"@types/jest-expect-message": "^1.0.3",
"@types/mock-fs": "^4.13.1",
"@types/node": "^17.0.21",
"@types/react": "^17.0.0",
"@types/react-bootstrap": "^0.32.20",
"@types/react-dom": "^16.0.6",
"@types/redux": "^3.6.0",
"@types/redux-thunk": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"bluebird": "^3.7.2",
"copyfiles": "^2.4.1",
"eslint": "^8.22.0",
"eslint-config-airbnb-typescript": "^16.1.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-import-newlines": "^1.2.3",
"glob": "^8.0.3",
"husky": "^7.0.0",
"i18next": "^21.0.0",
"io-ts-schema": "^0.1.1",
"jest": "^27.5.1",
"jest-expect-message": "^1.0.2",
"jest-mock-extended": "^2.0.4",
"lint-staged": "^12.3.5",
"mock-fs": "5.1.2",
"patch-package": "^6.4.7",
"react": "^17.0.2",
"react-bootstrap": "^2.2.1",
"react-dom": "^17.0.2",
"react-i18next": "^12.0.0",
"react-redux": "^8.0.4",
"redux-act": "^1.8.0",
"ts-jest": "^27.1.3",
"ts-loader": "^6.0.4",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.13.0",
"typescript": "^4.8.4",
"vortex-api": "github:Nexus-Mods/vortex-api",
"webpack": "^4.35.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"fp-ts": "^2.12.1",
"io-ts": "^2.2.18",
"key-tree": "^1.0.3",
"monocle-ts": "^2.3.13",
"spectacles-ts": "^1.0.7"
}
}