-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.07 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.07 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "react-scratch",
"version": "1.0.0",
"description": "React app exploring the GitHub public API. Built with Webpack, PostCSS-cssnext, ESLint and without create-react-app.",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open",
"build": "NODE_ENV='production' webpack -p",
"deploy": "npm run build && firebase deploy",
"firebase-init": "firebase login && firebase init"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tyreer/react-scratch.git"
},
"author": "Robert Tyree",
"license": "MIT",
"babel": {
"presets": [
"env",
"react"
],
"compact": true
},
"bugs": {
"url": "https://github.com/tyreer/react-scratch/issues"
},
"homepage": "https://github.com/tyreer/react-scratch#readme",
"dependencies": {
"axios": "^0.16.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"hoek": "~> 5.0.3",
"prop-types": "^15.5.8",
"query-string": "^4.3.4",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-router-dom": "^4.1.1"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.0",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "^1.9.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.0-rc.1",
"file-loader": "^0.11.2",
"firebase-tools": "^3.9.2",
"html-webpack-plugin": "^2.28.0",
"postcss": "^6.0.8",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.6",
"style-loader": "^0.16.1",
"url-loader": "^0.5.9",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.4.5"
}
}