-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
34 lines (34 loc) · 1.05 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
{
"name": "secrets",
"version": "1.0.0",
"description": "We're going to workshop our way through to a functional web application built on the Firebase platform.",
"main": "src/index.js",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"firebase-tools": "^6.0.0",
"parcel-bundler": "^1.10.3",
"parcel-plugin-clean-dist": "0.0.6",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"rmwc": "^3.0.9"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run-script serve",
"serve": "parcel src/index.html",
"build": "parcel build src/index.html --out-dir public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/how-to-firebase/secrets.git"
},
"author": "Chris Esplin <chris@chrisesplin.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/how-to-firebase/secrets/issues"
},
"homepage": "https://github.com/how-to-firebase/secrets#readme"
}