forked from noahm/DDRCardDraw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.52 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
{
"private": true,
"name": "ddr-card-draw",
"version": "1.0.0",
"description": "Tools for music game tournaments and training",
"scripts": {
"start": "webpack serve --env dev=true",
"build": "npm run validate && webpack",
"build:zip": "npm run validate && webpack --env zip",
"deploy:surge": "surge ./surge-redirect https://ddrdraw.surge.sh",
"deploy:staging": "surge ./surge-redirect https://ddrdraw-staging.surge.sh",
"deploy:firebase": "npm run build && firebase deploy",
"import:ddr": "node scripts/import-ddr.mjs",
"import:pump": "node scripts/import-pump.js",
"import:sdvx": "node scripts/import-sdvx.js",
"import:smx": "node scripts/import-smx.js",
"migrate": "node scripts/migrate.js",
"validate": "npm run validate:json && npm run validate:ts",
"validate:json": "node scripts/validate.js",
"validate:ts": "tsc --noemit"
},
"author": "Noah Manneschmidt",
"contributors": [
"Jeff Lloyd",
"Chris Chike"
],
"license": "BSD-2-Clause",
"devDependencies": {
"@babel/core": "^7.16",
"@babel/plugin-proposal-class-properties": "^7.16",
"@babel/plugin-proposal-optional-chaining": "^7.16",
"@babel/plugin-syntax-dynamic-import": "^7.8",
"@babel/plugin-transform-react-jsx": "^7.16",
"@babel/plugin-transform-react-jsx-source": "^7.16",
"@babel/preset-env": "^7.16",
"@babel/preset-typescript": "^7.16",
"@blueprintjs/core": "^4.0.0",
"@blueprintjs/icons": "^4.0.0",
"@blueprintjs/popover2": "^1.0.0",
"@blueprintjs/select": "^4.0.0",
"@emotion/babel-plugin-jsx-pragmatic": "^0.1.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.8",
"@types/better-sqlite3": "^7.6.0",
"@types/fuzzy-search": "^2.1.0",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"autoprefixer": "^10.4.0",
"babel-loader": "^9.0.0",
"better-sqlite3": "^7.6.2",
"cacheable-lookup": "^7.0.0",
"classnames": "^2.3.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.0",
"cross-spawn": "^7.0.3",
"css-loader": "^6.5.0",
"css-minimizer-webpack-plugin": "^4.0.0",
"eslint": "^7.32.0",
"favicons": "^7.0.0",
"favicons-webpack-plugin": "^6.0.0-alpha.2",
"fork-ts-checker-webpack-plugin": "^6.3.3",
"formdata-polyfill": "^4.0.10",
"fuzzy-search": "^3.0.2",
"he": "^1.2.0",
"html-webpack-plugin": "^5.3.0",
"iconv-lite": "^0.6.3",
"inquirer": "^8.2.0",
"jimp": "^0.16.1",
"jotai": "^1.4.6",
"jsdom": "^17.0.0",
"json-schema-to-typescript": "^10.1.5",
"jsonschema": "^1.2.2",
"mini-css-extract-plugin": "^2.4.3",
"node-fetch": "^2.6.7",
"normalize.css": "^8.0.1",
"offline-plugin": "npm:@lcdp/offline-plugin@^5.0.7",
"p-queue": "^6.0.0",
"postcss": "^8.4.4",
"postcss-loader": "^6.2.1",
"prettier": "^2.4.0",
"query-string": "^6.13.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"react-intl": "^5.23.0",
"react-refresh": "^0.10.0",
"sanitize-filename": "^1.6.3",
"style-loader": "^3.3.1",
"surge": "^0.23.0",
"typescript": "^4.5.2",
"victory": "^36.6.8",
"webpack": "^5.65.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.7.0",
"webpack-sources": "^3.2.1",
"xml2js": "^0.4.23",
"zip-webpack-plugin": "^4.0.0",
"zustand": "^3.6.4"
},
"resolutions": {
"cli-table3": "^0.6.0",
"http-signature": "^1.3.6",
"inquirer": "^8.0.0",
"jpeg-js": ">=0.4.4",
"loader-utils": "^2.0.0",
"minimist": ">=1.2.6"
}
}