-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.11 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.11 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
{
"name": "elm-firebase-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --hot --colors --port 3000 --config webpack.dev.config.js",
"preinstall": "npm run install-functions",
"install-functions": "cd functions && npm install",
"component": "elm-generate component",
"route": "elm-generate route",
"serve": "firebase serve",
"serve:prod": "NODE_ENV=production firebase serve",
"deploy": "npm run build && firebase deploy",
"build": "mkdir -p functions/build && cd functions && npm run build",
"test": "elm-test"
},
"author": "",
"license": "MIT",
"devDependencies": {
"elm": "^0.19.1-2",
"elm-on-spades": "git+https://github.com/rogeriochaves/spades.git",
"elm-test": "^0.19.1",
"elm-webpack-loader": "^6.0.1",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.17.0",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^3.1.3",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"ejs": "^2.6.1",
"express": "^4.16.3",
"jsdom": "^11.12.0",
"yargs": "^12.0.1"
}
}