forked from noahm/DDRCardDraw
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
119 lines (119 loc) · 3.97 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"private": true,
"name": "ddr-card-draw",
"version": "1.0.0",
"description": "Tools for music game tournaments and training",
"engines": {
"node": ">=18.15.0"
},
"scripts": {
"start": "webpack serve --env dev=true",
"build": "yarn validate && webpack",
"build:zip": "yarn validate && webpack --env zip",
"import:maimai": "ts-node scripts/maimai/import-maimai.ts",
"import:maimai-jackets": "ts-node scripts/maimai/import-maimai-jackets.ts",
"import:chunithm": "ts-node scripts/chunithm/import-chunithm.ts",
"import:chunithm-jackets": "ts-node scripts/chunithm/import-chunithm-jackets.ts",
"import:wacca": "ts-node scripts/wacca/import-wacca.ts",
"import:wacca-jackets": "ts-node scripts/wacca/import-wacca-jackets.ts",
"import:wacca-constants": "ts-node scripts/wacca/import-wacca-constants.ts",
"validate": "yarn validate:json && yarn validate:ts && eslint src",
"validate:json": "ts-node scripts/validate.ts",
"validate:ts": "tsc --noemit"
},
"author": "Noah Manneschmidt",
"contributors": [
"Jeff Lloyd",
"Chris Chike"
],
"license": "BSD-2-Clause",
"devDependencies": {
"@babel/core": "^7.23",
"@babel/plugin-proposal-class-properties": "^7.18",
"@babel/plugin-proposal-optional-chaining": "^7.21",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.23",
"@babel/plugin-transform-react-jsx-source": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23",
"@blueprintjs/core": "^5.7.1",
"@blueprintjs/icons": "^5.1.0",
"@blueprintjs/select": "^5.0.19",
"@lcdp/offline-plugin": "^5.0.7",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@types/better-sqlite3": "^7.6.8",
"@types/download": "^8.0.5",
"@types/fuzzy-search": "^2.1.5",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.8.9",
"@types/node-fetch": "^2.6.9",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"better-sqlite3": "^9.1.1",
"cacheable-lookup": "^7.0.0",
"cheerio": "^1.0.0-rc.12",
"classnames": "^2.3.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-spawn": "^7.0.3",
"css-loader": "^6.5.0",
"css-minimizer-webpack-plugin": "^5.0.0",
"download": "^8.0.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react-hooks": "^4.6.0",
"favicons": "^7.1.4",
"favicons-webpack-plugin": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"framer-motion": "^10.16.4",
"fuzzy-search": "^3.0.2",
"he": "^1.2.0",
"html-webpack-plugin": "^5.5.3",
"iconv-lite": "^0.6.3",
"inquirer": "^9.2.12",
"jimp": "^0.22.10",
"jotai": "^2.6.0",
"jsdom": "^23.0.0",
"json-schema-to-typescript": "^13.1.1",
"jsonschema": "^1.4.1",
"mini-css-extract-plugin": "^2.7.6",
"modern-screenshot": "^4.4.34",
"nanoid": "^5.0.3",
"node-fetch": "^2.6.7",
"normalize.css": "^8.0.1",
"p-queue": "^6.6.2",
"peerjs": "^2.0.0-beta.3",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"prettier": "^3.1.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-error-boundary": "^4.0.11",
"react-intl": "^6.5.5",
"react-refresh": "^0.14.0",
"sanitize-filename": "^1.6.3",
"simfile-parser": "^0.7.0",
"style-loader": "^3.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"victory": "^36.6.12",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.13.0",
"webpack-sources": "^3.2.1",
"xml2js": "^0.6.2",
"zip-webpack-plugin": "^4.0.0",
"zustand": "^4.3.9"
},
"resolutions": {
"loader-utils": "^2.0.0",
"semver": "^7.5.2",
"xml2js": "^0.5.0"
},
"packageManager": "yarn@4.0.2"
}