-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.79 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
{
"name": "fe-react-template",
"version": "0.1.0",
"repository": "[email protected]:veeso/fe-react-template.git",
"author": "Christian Visintin <[email protected]>",
"license": "MIT",
"browserslist": {
"production": [
"> 5%",
"not dead",
"not op_mini all"
],
"development": [
"> 5%",
"not dead",
"not op_mini all"
]
},
"scripts": {
"build:release": "yarn clean && parcel build src/index.html --reporter @parcel/reporter-bundle-analyzer && cp sitemap.xml dist/sitemap.xml && cp robots.txt dist/robots.txt",
"clean": "rm -rf dist/* .parcel-cache/",
"dev": "parcel src/index.html",
"lint": "eslint . --ext .ts --ext .tsx --max-warnings=0",
"prettier": "prettier --config .prettierrc --write src/",
"prettier:check": "prettier --config .prettierrc --check src/"
},
"dependencies": {
"animate.css": "^4.1",
"js-cookie": "^3.0",
"leaflet": "^1.9.4",
"react": "^19",
"react-dom": "^19",
"react-helmet": "^6.1",
"react-icons": "^5.4.0",
"react-leaflet": "v5.0.0-rc.1",
"react-router-dom": "^6.22"
},
"devDependencies": {
"@parcel/reporter-bundle-analyzer": "^2.11.0",
"@parcel/transformer-typescript-tsc": "^2.13.0",
"@types/leaflet": "^1.9.15",
"@types/gtag.js": "^0.0.20",
"@types/js-cookie": "^3.0.6",
"@types/react": "^18.2",
"@types/react-dom": "^18.2",
"@types/react-helmet": "^6.1.11",
"@types/react-lazyload": "^3.2.3",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"eslint": "^8",
"eslint-config-prettier": "^9.1",
"parcel": "^2.13",
"postcss": "^8.4",
"prettier": "^3",
"process": "^0.11.10",
"tailwindcss": "^3.4",
"typescript": "^5.3"
}
}