forked from dannybutterfield1880/fire-pi-base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1017 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 1017 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
31
32
{
"name": "fire-pi",
"version": "1.0.0",
"description": "Boilerplate for creating Pi Network web apps running on the Firebase platform",
"main": "public/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cd public && webpack serve --mode=development",
"build": "cd public && webpack --mode=production",
"start": "cd public && webpack serve --mode=production",
"deploy": "cd public && webpack --mode=production && cd ../ && firebase deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dannybutterfield1880/fire-pi-base.git"
},
"keywords": [
"firebase",
"pinetwork"
],
"author": "Danny Butterfield",
"license": "MIT",
"bugs": {
"url": "https://github.com/dannybutterfield1880/fire-pi-base/issues"
},
"homepage": "https://github.com/dannybutterfield1880/fire-pi-base#readme",
"dependencies": {
"webpack": "^5.45.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}