-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.08 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.08 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
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
104
105
106
107
108
{
"name": "forge",
"version": "1.0.0-rc.1",
"description": "Warframe theory-crafting build planner",
"main": "dist/browser/index.js",
"author": {
"name": "millsydotdev"
},
"license": "MIT",
"overwolf": {
"packages": [
"gep",
"overlay"
]
},
"build": {
"appId": "com.forge.app",
"productName": "Forge",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"*.html"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
}
},
"scripts": {
"build": "npm run build:preload && npm run build:main && npm run build:renderer",
"build:prod": "webpack --config webpack.prod.config.js",
"update-data": "node scripts/update-game-data.cjs",
"build:preload": "webpack --config webpack.preload.config.js",
"build:main": "webpack --config webpack.main.config.js",
"build:renderer": "webpack --config webpack.renderer.config.js",
"start": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/start-dev.ps1",
"build:ow-electron": "ow-electron-builder --publish=never",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:e2e:watch": "vitest --config vitest.e2e.config.ts",
"lint": "eslint src/ --ext .ts,.tsx",
"format": "prettier --write src/",
"typecheck": "tsc --noEmit",
"analyze": "npm run build:prod && npx source-map-explorer 'dist/renderer/*.js'",
"ci": "npm run lint && npm run typecheck && npm run test && npm run build",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
},
"devDependencies": {
"@overwolf/ow-electron": "latest",
"@overwolf/ow-electron-builder": "latest",
"@overwolf/ow-electron-packages-types": "^1.1.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.62.0",
"@typescript-eslint/parser": "^8.62.0",
"@vitest/coverage-v8": "^4.1.9",
"@vitest/ui": "^4.1.9",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.8",
"playwright": "^1.61.1",
"prettier": "^3.8.4",
"source-map-explorer": "^2.5.3",
"ts-loader": "^9.4.2",
"typescript": "^4.7.4",
"typescript-eslint": "^8.62.0",
"vitest": "^4.1.9",
"webpack": "^5.75.0",
"webpack-cli": "^7.1.0",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"@wfcd/items": "^1.1273.26",
"@wfcd/mod-generator": "^1.0.2",
"dexie": "^4.4.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"zustand": "^5.0.14"
}
}