This repository has been archived by the owner on May 26, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
95 lines (95 loc) · 2.8 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
{
"name": "att-voodoo",
"version": "1.3.0",
"description": "A community-made magic mod for A Township Tale, a VR MMORPG game.",
"main": "build/ui/main.js",
"scripts": {
"compile": "tsc --noEmit",
"build": "npm run build:speech && npm run build:ui",
"prebuild:speech": "rimraf ./build/speech",
"build:speech": "nuget restore src/speech && dotnet build --no-incremental --force --output build/speech src/speech && cp src/speech/grammar.xml build/speech",
"prebuild:ui": "rimraf ./build/ui ./dist && mkdir build/ui && cp src/ui/images/icon.png build/ui/icon.png",
"build:ui": "webpack --mode=production && electron-builder -w",
"react:dev": "webpack serve --mode=development",
"electron:dev": "nodemon",
"dev": "concurrently --kill-others \"npm run react:dev\" \"npm run electron:dev\"",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"extends": null,
"appId": "com.marcdingena.townshiptale.voodoo",
"productName": "Voodoo",
"copyright": "Copyright © 2021-2022 ${author}",
"mac": {
"category": "public.app-category.utilities"
},
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "build/ui"
},
"extraResources": [
{
"from": "build/speech",
"to": "speech",
"filter": [
"**/*"
]
}
],
"extraFiles": [
"./.env"
]
},
"keywords": [],
"author": "Marc Dingena",
"license": "MIT",
"devDependencies": {
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"concurrently": "^6.0.1",
"css-loader": "^6.7.1",
"dotenv": "^8.2.0",
"electron": "^19.0.8",
"electron-builder": "^23.1.0",
"electron-fetch": "^1.7.4",
"electron-is-dev": "^2.0.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^6.0.0",
"jotai": "^0.16.7",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"oidc-client": "^1.11.5",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"typescript": "^4.2.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^3.11.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts,jsx,tsx,json,css,html}": "prettier --write",
"**/*.md": "doctoc --update-only --maxlevel 3"
}
}