forked from discretize/discretize-gear-optimizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.2 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
{
"name": "discretize-gear-optimizer",
"version": "1.0.0",
"private": true,
"description": "Discretize Gear Optimizer",
"author": "marcustyphoon, gw2princeps, metagame",
"keywords": [
"gatsby"
],
"engines": {
"node": "16"
},
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"profile": "gatsby build --profile --no-uglify && gatsby serve",
"clean": "gatsby clean",
"prettier": "prettier --write . \"!**/*.{md,json,yaml,yml}\"",
"eslint": "eslint --ignore-path .gitignore . --ext .js,.jsx,ts,tsx",
"updateMappings": "node updateMappings.js",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"testModifiers": "node --experimental-json-modules ./src/assets/modifierdata/testModifiers.js",
"testPresets": "node --experimental-json-modules ./src/assets/presetdata/testPresets.js",
"extractLocale": "babel --config-file ./babel-extract.config.js 'src/**/*.{js,jsx,ts,tsx}' > /dev/null",
"extractLocaleCMD": "babel --config-file ./babel-extract.config.js \"src/**/*.{js,jsx,ts,tsx}\" > NUL"
},
"dependencies": {
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@reduxjs/toolkit": "^1.6.1",
"classnames": "^2.3.1",
"gatsby": "^3.10.2",
"gatsby-plugin-image": "^1.11.0",
"gatsby-plugin-material-ui": "^3.0.1",
"gatsby-plugin-react-i18next": "^1.1.1",
"gatsby-plugin-sharp": "^3.11.0",
"gatsby-plugin-theme-ui": "^0.10.1",
"gatsby-source-filesystem": "^3.11.0",
"gatsby-transformer-sharp": "^3.11.0",
"gatsby-transformer-yaml": "^3.10.0",
"gw2-ui-bulk": "0.11.12",
"i18next": "^21.2.4",
"js-yaml": "^4.1.0",
"jss": "^10.7.1",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"material-ui-popup-state": "^1.9.0",
"nouislider-react": "^3.4.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.12.0",
"react-jss": "^10.7.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-actions": "^2.6.5",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"theme-ui": "^0.10.0",
"typeface-fira-mono": "^0.0.72",
"typeface-menomonia": "^0.1.2",
"typeface-muli": "^1.1.3",
"typeface-raleway": "^0.0.75"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/plugin-transform-typescript": "^7.15.8",
"@babel/types": "^7.15.6",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"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.22.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-jsdoc": "^36.1.1",
"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"
}
}