This repository has been archived by the owner on Apr 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.33 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
{
"name": "@discretize/react-discretize-components",
"version": "2.1.9",
"description": "The source repo for common react components of discretize projects",
"main": "lib/index.js",
"module": "es/index.js",
"browser": "es/index.js",
"exports": {
"require": "./lib/index.js",
"import": "./es/index.js",
"browser": "./es/index.js",
"module": "./es/index.js"
},
"author": "gw2princeps",
"license": "MIT",
"private": false,
"files": [
"es",
"lib"
],
"scripts": {
"build": "del-cli es lib && rollup -c --environment BUILD:production",
"serve": "rollup -c -w --environment BUILD:development",
"prepublish": "yarn build"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/react": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"del-cli": "^4.0.1",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-airbnb-typescript": "^16.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsdoc": "^37.0.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.4.1",
"react": "^17.0.2",
"rollup": "^2.60.0",
"rollup-plugin-node-externals": "^2.2.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.16.3",
"@discretize/gw2-ui-new": "^0.0.7",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.4.4",
"@mui/material": "^5.2.7",
"@mui/styles": "^5.4.4",
"classnames": "^2.3.1",
"gatsby-plugin-image": "^2.4.0",
"tss-react": "^3.3.1",
"typeface-fira-mono": "^0.0.72",
"typeface-menomonia": "^0.1.2",
"typeface-muli": "^1.1.3",
"typeface-raleway": "^0.0.75"
},
"peerDependencies": {
"react": "^17.0.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}