-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 938 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 938 Bytes
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
{
"name": "simple-reservation",
"version": "0.0.1",
"description": "a simple reservation app",
"main": "index.html",
"repository": "https://ivanvillacreative@github.com/ivanvillacreative/simple-reservation.git",
"author": "Ivan Villa <ivan@wearescribe.com>",
"license": "MIT",
"scripts": {
"start": "parcel index.html --out-dir local",
"build": "parcel build index.html --out-dir public",
"clean": "rm -r public && rm -r .cache && rm -r local"
},
"dependencies": {
"@firebase/app": "^0.3.2",
"@firebase/firestore": "^0.5.3",
"@material-ui/core": "^1.0.0-rc.0",
"@material-ui/icons": "^1.1.0",
"babel-preset-env": "^1.7.0",
"classnames": "^2.2.6",
"components": "^0.1.0",
"firebase": "^5.0.3",
"firebase-admin": "^5.12.1",
"parcel-bundler": "^1.8.1",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-router-dom": "^4.3.1"
},
"devDependencies": {}
}