This repository has been archived by the owner on Feb 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
68 lines (68 loc) · 2.21 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
{
"name": "webpackbin",
"version": "0.2.0",
"scripts": {
"start": "webpack-dev-server --content-base public/",
"deploy:test": "NODE_ENV=production WEBPACKBIN_ENV=webpackbin-test webpack && firebase deploy --project webpackbin-test --public public --only \"hosting,database\"",
"deploy:prod": "NODE_ENV=production WEBPACKBIN_ENV=webpackbin-prod webpack && firebase deploy --project webpackbin-prod --public public --only \"hosting,database\"",
"rules": "firebase deploy --project webpackbin-test --public public --only \"database\"",
"lint": "eslint \"src/**/*\""
},
"dependencies": {
"@cerebral/firebase": "^3.2.1",
"@cerebral/http": "^3.1.0",
"@cerebral/react": "^2.2.0",
"@cerebral/router": "^2.1.0",
"@cerebral/useragent": "^2.1.0",
"babel-core": "^6.21.0",
"babel-loader": "6.2.10",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "6.16.0",
"cerebral": "^3.1.0",
"chunk-manifest-webpack-plugin": "^1.0.0",
"classnames": "^2.2.5",
"codemirror": "^5.30.0",
"coffeelint": "^1.16.0",
"css-loader": "^0.23.1",
"eslint-browser": "^3.8.1",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-prettier": "^2.3.1",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"file-loader": "^0.9.0",
"firebase": "^3.6.2",
"firebase-tools": "^3.0.0",
"html-hint": "^0.2.4",
"html-webpack-plugin": "^2.22.0",
"htmlhint": "^0.9.13",
"inline-manifest-webpack-plugin": "^3.0.1",
"parserlib": "^1.1.1",
"path-to-regexp": "^1.7.0",
"prettier": "^1.7.2",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.0",
"webpack-bundle-analyzer": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"eslint": "^2.13.1",
"eslint-plugin-react": "^5.2.2",
"standard": "^8.6.0",
"webpack-dev-server": "2.4.1"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"node_modules/**"
],
"plugins": [
"inferno"
]
}
}