forked from discretize/discretize-gear-optimizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.92 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
{
"name": "discretize-gear-optimizer",
"version": "1.0.0",
"private": true,
"description": "Discretize Gear Optimizer",
"author": "marcustyphoon, gw2princeps, metagame",
"engines": {
"node": ">=16"
},
"browserslist": [
"defaults and supports es6-module"
],
"scripts": {
"develop": "vite",
"dev": "vite",
"start": "vite",
"cfdev": "VITE_HAS_CF=true wrangler pages dev --kv SHORT_LINKS -- yarn dev",
"build": "vite build",
"cfbuild": "VITE_HAS_CF=true vite build --watch",
"serve": "vite preview --host",
"cfserve": "VITE_HAS_CF=true wrangler pages dev --kv SHORT_LINKS -- yarn serve",
"buildserve": "vite build && vite preview --host",
"prettier": "prettier --write . \"!**/*.{md,json,yaml,yml}\"",
"prettierCheck": "prettier --check . \"!**/*.{md,json,yaml,yml}\"",
"eslint": "eslint --ignore-path .gitignore --max-warnings 0 . --ext .js,.jsx,.ts,.tsx",
"updateMappings": "node updateMappings.js",
"deploy": "vite build && gh-pages -d dist",
"testModifiers": "node ./src/assets/modifierdata/testModifiers.js",
"testPresets": "node ./src/assets/presetdata/testPresets.js",
"extractLocale": "babel --config-file ./babel-extract.config.js 'src/**/*.{js,jsx,ts,tsx}' > /dev/null",
"extractLocaleEn": "babel --config-file ./babel-extract-en.config.js 'src/**/*.{js,jsx,ts,tsx}' > /dev/null && node cleanupLocale.js",
"extractLocaleCMD": "babel --config-file ./babel-extract.config.js \"src/**/*.{js,jsx,ts,tsx}\" > NUL",
"cleanupLocale": "node cleanupLocale.js"
},
"resolutions": {
"@discretize/gw2-ui-new": "^0.0.21"
},
"dependencies": {
"@discretize/gw2-ui-new": "^0.0.21",
"@discretize/object-compression": "^1.0.3",
"@discretize/react-discretize-components": "^2.2.9",
"@discretize/typeface-menomonia": "^0.1.3",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.5",
"@mui/material": "^5.2.7",
"@reduxjs/toolkit": "^1.7.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^17.0.23",
"arraybuffer-equal": "^1.0.4",
"buffer": "^6.0.3",
"classnames": "^2.3.1",
"i18next": "^21.6.5",
"js-yaml": "^4.1.0",
"json-url": "^3.0.0",
"material-ui-popup-state": "^2.0.0",
"pako": "^2.0.4",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.4",
"react-i18next": "^11.15.3",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"tss-react": "^3.3.1",
"typeface-fira-mono": "^1.1.13",
"typeface-muli": "^1.1.13",
"typeface-raleway": "^1.1.13",
"urlsafe-base64": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "7.16.7",
"@babel/plugin-transform-modules-commonjs": "^7.17.9",
"@babel/plugin-transform-typescript": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/types": "^7.16.7",
"@cloudflare/workers-types": "^3.4.0",
"@types/babel__core": "^7.1.19",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"@vitejs/plugin-react": "^1.0.7",
"axios": "^0.21.4",
"babel-eslint": "^10.0.0",
"babel-plugin-i18next-extract": "^0.8.3",
"eslint": "^7.5.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-jsdoc": "^37.9.7",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-testing-library": "^3.9.0",
"esm": "^3.2.25",
"gh-pages": "^3.2.3",
"prettier": "^2.4.1",
"typescript": "~4.4.4",
"vite": "^2.9.0",
"wrangler": "^0.0.24"
}
}