-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.39 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.39 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
{
"name": "lisc",
"version": "0.0.0",
"description": "A Spellcrafting Calculator for the MMO Dark Age of Camelot",
"author": "Mathias Punkenhofer",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mpunkenhofer/lisc.git"
},
"bugs": {
"url": "https://github.com/mpunkenhofer/lisc/issues"
},
"homepage": "https://mpunkenhofer.github.io/lisc/",
"engines": {
"node": ">=10.6.0"
},
"scripts": {
"clean": "gts clean",
"build": "npm run clean && webpack --config webpack.production.js",
"dev": "npm run clean && webpack serve --config=webpack.development.js",
"gen-eden-db": "ts-node db/eden/ingest.ts",
"gen-icons": "py ./bin/svg_to_png.py ./assets/images/lisc.svg -d ./public/ -p lisc -r 16 32 48 180 192 512 && magick public/lisc16.png public/lisc32.png public/lisc48.png public/favicon.ico && rimraf public/lisc16.png public/lisc32.png public/lisc48.png && copyfiles -f assets/images/lisc_mask.svg assets/images/lisc.svg public",
"predeploy": "npm run build",
"crawl": "npx ts-node scripts/crawl_items.ts",
"deploy": "gh-pages -d build",
"lint": "gts lint",
"fix": "gts fix"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.2",
"firebase": "^9.17.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.8.1",
"redux-thunk": "^2.4.2",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.3",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-router-dom": "^5.3.3",
"@types/redux-logger": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"better-sqlite3": "^8.1.0",
"create-file-webpack": "^1.0.2",
"css-loader": "^6.7.3",
"eslint": "^8.33.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fork-ts-checker-webpack-plugin": "^7.3.0",
"gh-pages": "^5.0.0",
"gts": "^3.1.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.2",
"redux-logger": "^3.0.6",
"resolve-url-loader": "^5.0.0",
"sass": "^1.58.0",
"sass-loader": "^13.2.0",
"ts-loader": "^9.4.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-middleware": "^6.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-font-preload-plugin": "^1.5.0",
"webpack-merge": "^5.8.0"
}
}