-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.42 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
{
"name": "bright-earth",
"version": "0.0.1",
"scripts": {
"serve": "parcel serve src/index.html",
"deploy": "rm -r dist && parcel build src/index.html && firebase deploy",
"lint": "eslint . --max-warnings=0 --ext .ts,.tsx,.js"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.0.0-beta.0",
"react-router-dom": "^6.0.0-beta.0",
"workbox-routing": "^6.2.4",
"workbox-strategies": "^6.2.4"
},
"devDependencies": {
"@parcel/packager-raw-url": "^2.0.0-rc.0",
"@parcel/transformer-image": "^2.0.0-rc.0",
"@parcel/transformer-webmanifest": "^2.0.0-rc.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/workbox-sw": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^4.0.0",
"firebase-tools": "^11.19.0",
"husky": "^8.0.2",
"parcel": "^2.8.2",
"prettier": "^2.0.4",
"process": "^0.11.10",
"typescript": "^4.2.4"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "avoid"
},
"browserslist": [
"since 2018"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}