-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.63 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
{
"name": "firebase-ignite",
"version": "0.0.1",
"description": "firebase boilerplate",
"scripts": {
"clean": "rimraf dist",
"copy-files": "mkdir dist && cp static/* dist",
"clean-and-copy": "npm-run-all clean copy-files",
"lint": "eslint src/",
"predev": "npm run clean",
"dev": "webpack-dashboard -- webpack-dev-server --config webpack/webpack.dev.config.js",
"prebuild:staging": "npm run clean",
"build:staging": "webpack --progress --config webpack/webpack.staging.config.js",
"prebuild:production": "npm run clean",
"build:production": "webpack --progress --config webpack/webpack.prod.config.js -p --display-chunks"
},
"author": "Thomas Collardeau <thomas@collardeau.com> (http://thomas.collardeau.com/)",
"license": "ISC",
"dependencies": {
"firebase": "^3.6.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"recompose": "^0.23.1",
"uuid": "^3.0.1"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.22.0",
"copy-webpack-plugin": "^4.0.1",
"eslint": "^3.14.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"html-webpack-plugin": "^2.28.0",
"offline-plugin": "^4.6.1",
"rimraf": "^2.5.4",
"run-all": "^1.0.1",
"webpack": "^2.4.1",
"webpack-dashboard": "^0.3.0",
"webpack-dev-server": "^2.4.2"
}
}