-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.01 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
{
"name": "bestiary",
"version": "0.2.0",
"description": "Bestiary - flexible and customizable",
"main": "./dist/index.js",
"scripts": {
"start": "chcp 65001 && concurrently \"npm:electron\" \"npm:watch\" -k -c \"yellow,gray\"",
"electron": "electron ./dist/index.js",
"watch": "webpack --config ./webpack.config.js --watch",
"build": "webpack --config ./webpack.config.js",
"package": "npm run build && copy package.json dist\\package.json && npx electron-packager . Bestiary --overwrite --icon=icon-light.ico",
"prod": ".\\bestiary-win32-x64\\bestiary.exe"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [],
"author": "KobraKid",
"license": "ISC",
"devDependencies": {
"@types/fparser": "^2.0.0",
"@types/node": "^17.0.45",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/react-transition-group": "^4.4.4",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"css-loader": "^6.7.1",
"electron": "^25.2.0",
"electron-packager": "^16.0.0",
"eslint": "^8.49.0",
"eslint-plugin-react": "^7.33.2",
"html-webpack-plugin": "^5.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.71.0",
"sass-loader": "^13.0.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.4",
"typescript": "^4.9.5",
"webpack": "^5.88.1",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"chalk": "^5.0.1",
"cheerio": "^1.0.0-rc.12",
"concurrently": "^7.2.1",
"env-paths": "^3.0.0",
"fparser": "^2.0.2",
"handlebars": "^4.7.6",
"handlebars-async-helpers": "^1.0.6",
"html-react-parser": "^5.0.6",
"mongodb": "^5.8.0",
"mongoose": "^7.3.3",
"node-cache": "^5.1.2",
"react-indiana-drag-scroll": "^2.2.0",
"react-transition-group": "^4.4.2"
}
}