-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 1.81 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
{
"name": "blobs.gg",
"private": true,
"version": "0.0.1",
"description": "Now with pages!",
"scripts": {
"start": "parcel serve index.html",
"build": "parcel build index.html --detailed-report 20",
"format": "prettier --write .",
"analyzer-build": "parcel build index.html --reporter @parcel/reporter-bundle-analyzer",
"analyzer": "npm run -s analyzer-build && node analyzer.js && parcel serve parcel-bundle-reports/filtered.html --open"
},
"dependencies": {
"@babel/core": "^7.20.5",
"@emotion/babel-plugin": "^11.10.5",
"@emotion/eslint-plugin": "^11.10.0",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^5.4.2",
"@mui/material": "^5.4.3",
"lodash.clonedeep": "^4.5.0",
"lodash.debounce": "^4.0.8",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intersection-observer": "^9.4.1",
"react-router-dom": "^6.4.3"
},
"devDependencies": {
"@parcel/config-default": "^2.3.2",
"@parcel/packager-xml": "^2.3.2",
"@parcel/reporter-bundle-analyzer": "^2.3.2",
"@parcel/transformer-svg-react": "^2.3.2",
"@parcel/transformer-xml": "^2.3.2",
"@welldone-software/why-did-you-render": "^6.2.3",
"eslint": "^8.28.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"parcel": "^2.3.2",
"prettier": "^2.8.0"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"last 2 versions",
"Firefox ESR",
"not IE > 0",
"not IE_mob > 0",
"not bb > 0",
"not op_mob > 0",
"not op_mini all",
"not ios_saf < 13"
],
"development": [
"last 1 chrome version",
"last 1 firefox version"
]
}
}