-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.4 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
{
"name": "avarose.dev",
"version": "0.1.0",
"private": true,
"license": "MIT",
"author": "Avery Rose Doucet",
"source": "src/public/index.html",
"scripts": {
"postinstall": "npm run build",
"postuninstall": "npm run clean",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\" --config ./.prettierrc",
"clean": "rimraf dist",
"start": "parcel",
"dev": "npm run clean && npm run format && parcel serve",
"watch": "parcel watch",
"build": "npm run clean && npm run format && parcel build",
"serve": "npm run build && npm run start"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/material": "^5.11.5",
"@nextui-org/react": "^1.0.0-beta.10",
"@parcel/transformer-sass": "^2.7.0",
"firebase": "^9.10.0",
"jquery": "^3.6.1",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-firebase-hooks": "^5.0.3",
"react-firestore": "^1.0.1",
"react-ga4": "^1.4.1",
"react-icons": "^4.4.0",
"react-qr-code": "^2.0.11",
"react-router": "^6.4.0",
"react-router-dom": "^6.4.0"
},
"devDependencies": {
"@parcel/compressor-brotli": "^2.7.0",
"@parcel/compressor-gzip": "^2.7.0",
"@parcel/config-default": "^2.7.0",
"@parcel/core": "^2.7.0",
"@parcel/packager-raw-url": "^2.7.0",
"@parcel/transformer-typescript-tsc": "^2.7.0",
"@parcel/transformer-webmanifest": "^2.7.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"autoprefixer": "^10.4.12",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.31.8",
"parcel": "^2.7.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "*",
"typescript-eslint": "0.0.1-alpha.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}