-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.87 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.87 KB
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
{
"name": "firebase-functions-boilerplate",
"version": "1.0.0",
"description": "A boilerplate to work with firebase-functions locally",
"main": "src/index.js",
"scripts": {
"start": "concurrently --prefix \"[{name}]\" --names \"CLIENT,FUNCTION\" -c \"white.bold,gray.bold\" \"webpack-dev-server\" \"babel-watch src/index.js --watch src\"",
"deploy": "npm run build:client && npm run build:functions",
"build:client": "webpack",
"build:functions": "node deploy/writeConfigs.js && babel src --out-dir functions && cd functions && npm install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cerebral/firebase-functions-boilerplate.git"
},
"keywords": [
"firebase",
"firebase-functions"
],
"dependencies": {
"babel-cli": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-define": "^1.3.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"firebase": "^4.1.2",
"firebase-admin": "~4.2.1",
"firebase-functions": "^0.5.7",
"firebase-functions-mock": "^1.0.0",
"preact": "^8.1.0",
"preact-render-to-string": "^3.6.3",
"serviceworker-webpack-plugin": "^0.2.2",
"webpack": "^2.6.1"
},
"devDependencies": {
"babel-watch": "^2.0.6",
"concurrently": "^3.4.0",
"eslint": "^3.19.0",
"eslint-config-prettier": "^2.1.1",
"eslint-plugin-prettier": "^2.1.1",
"eslint-plugin-react": "^7.0.1",
"prettier": "^1.4.2",
"webpack-dev-server": "^2.4.5"
},
"author": "christianalfoni",
"license": "MIT",
"bugs": {
"url": "https://github.com/cerebral/firebase-functions-boilerplate/issues"
},
"homepage": "https://github.com/cerebral/firebase-functions-boilerplate#readme"
}