-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 988 Bytes
/
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
{
"name": "where-is-my-money",
"version": "1.0.0",
"description": "",
"source": "src/index.html",
"homepage": "https://github.com/Iakow/where-is-my-money",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"start": "parcel",
"prestart": "npm run clear",
"build": "parcel build --public-url ./",
"prebuild": "npm run clear",
"clear": "shx rm -rf dist/*",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"gh-pages": "^3.2.3",
"parcel": "^2.2.1",
"shx": "^0.3.3"
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"firebase": "^8.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.0.2",
"recharts": "^2.1.6"
}
}