-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.57 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.57 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
{
"name": "pip-boy-desktop",
"version": "0.1.0",
"description": "Pip-Boy Desktop Environment for Windows 11",
"main": "./dist/main/index.js",
"scripts": {
"start": "electron-forge start",
"build": "tsc && webpack --config webpack.config.js",
"package": "electron-forge package",
"make": "electron-forge make",
"lint": "eslint --ext .ts,.tsx ."
},
"keywords": [
"pip-boy",
"fallout",
"desktop",
"windows",
"electron"
],
"author": "Pip-Boy Desktop Team",
"license": "MIT",
"devDependencies": {
"@electron-forge/cli": "^6.0.0",
"@electron-forge/maker-deb": "^6.0.0",
"@electron-forge/maker-rpm": "^6.0.0",
"@electron-forge/maker-squirrel": "^6.0.0",
"@electron-forge/maker-zip": "^6.0.0",
"@types/node": "^16.11.7",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"css-loader": "^6.7.1",
"electron": "^22.0.0",
"eslint": "^8.0.1",
"eslint-plugin-import": "^2.25.0",
"eslint-plugin-react": "^7.30.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^7.2.1",
"node-loader": "^2.0.0",
"sass": "^1.52.1",
"sass-loader": "^13.0.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.0",
"typescript": "~4.5.4",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"electron-squirrel-startup": "^1.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-transition-group": "^4.4.2",
"styled-components": "^5.3.5"
}
}