-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
72 lines (72 loc) · 2.26 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "askadevorg-marketing",
"description": "",
"main": "index.js",
"scripts": {
"build": "rm -rf dist && mkdir dist && NODE_ENV=production webpack -p --config ./webpack.prod.config.js && cp -R static dist && yarn bolt",
"test": "echo \"no tests defined\"",
"deploy": "yarn build && firebase deploy && rm -rf dist",
"start": "webpack-dev-server --progress --colors --hot --content-base . --config ./webpack.config.js",
"bolt": "yarn bolt:compile && yarn bolt:build",
"bolt:compile": "yarn bolt:remove-compiled && cat bolt/*.bolt > bolt/database.compiled.bolt",
"bolt:remove-compiled": "rm -f bolt/database.compiled.bolt",
"bolt:build": "firebase-bolt < bolt/database.compiled.bolt > database.rules.json && yarn bolt:remove-compiled"
},
"author": "Tim Shedor <[email protected]>",
"dependencies": {
"@babel/core": "7.0.0-beta.39",
"@babel/polyfill": "7.0.0-beta.39",
"@babel/preset-env": "7.0.0-beta.39",
"@babel/preset-react": "7.0.0-beta.39",
"@babel/preset-stage-0": "^7.0.0-beta.39",
"autoprefixer": "^7.1.2",
"babel-loader": "8.0.0-beta.0",
"downshift": "^1.28.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.5",
"firebase": "^4.3.0",
"html-webpack-plugin": "^2.30.1",
"json-loader": "^0.5.7",
"jsx-loader": "^0.13.2",
"moment": "^2.18.1",
"moment-timezone": "^0.5.14",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"precss": "^2.0.0",
"prop-types": "^15.5.10",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-flatpickr": "^3.5.1",
"react-places-autocomplete": "^5.4.3",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.4.1"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
],
"@babel/preset-react",
"@babel/preset-stage-0"
],
"plugins": [
"react-hot-loader/babel"
]
},
"devDependencies": {
"firebase-bolt": "^0.8.2",
"react-hot-loader": "^4.0.0-beta.21",
"redux-logger": "^3.0.6",
"webpack-dev-server": "^2.6.1"
},
"private": true
}