-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.82 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.82 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "angular.hamburg",
"version": "0.7.1",
"description": "The angular.hamburg website for Hamburg's Angular Meetup, jokingly made with React.",
"main": "index.js",
"scripts": {
"lint": "eslint src --fix",
"build-sw": "node build-service-worker.js",
"build-sw:prod": "cross-env NODE_ENV=production node build-service-worker.js",
"prestart": "npm run lint && npm run build-sw",
"start": "webpack-dev-server --config webpack-dev-config.js -d --history-api-fallback --hot --inline --progress --colors",
"prebuild": "npm run lint",
"build": "cross-env NODE_ENV=production webpack --config webpack-prod-config.js --progress --colors",
"postbuild": "npm run build-sw:prod"
},
"dependencies": {
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-markdown": "^2.4.2",
"stringz": "^0.1.1",
"throw-if-missing": "^1.1.0"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.9.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"clean-webpack-plugin": "^0.1.14",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^3.1.3",
"css-loader": "^0.26.1",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"file-loader": "^0.9.0",
"font-awesome": "^4.7.0",
"glob-all": "^3.1.0",
"imagemin-mozjpeg": "^6.0.0",
"imagemin-webpack-plugin": "^1.4.4",
"json-loader": "^0.5.4",
"postcss-custom-properties": "^5.0.1",
"postcss-import": "^9.0.0",
"postcss-import-url": "^2.2.0",
"postcss-loader": "^1.1.1",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.13.1",
"sw-build-tools": "^0.2.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.10.0"
},
"eslintConfig": {
"extends": "airbnb",
"parser": "babel-eslint",
"plugins": [
"import",
"jsx-a11y",
"react"
],
"rules": {
"comma-dangle": [
2,
"never"
],
"semi": [
2,
"never"
],
"react/prop-types": "off",
"react/jsx-filename-extension": "off"
},
"globals": {
"window": false,
"document": false,
"navigator": false
}
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0",
"stage-1"
],
"env": {
"production": {
"presets": [
"es2015",
"react",
"stage-0",
"stage-1",
"react-optimize"
]
}
}
}
}