-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.55 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
{
"name": "app",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=6",
"npm": ">=3.8"
},
"dependencies": {
"autoprefixer": "^6.3.7",
"babel-polyfill": "^6.9.1",
"browser-sync": "^2.13.0",
"connect-history-api-fallback": "^1.2.0",
"copy-webpack-plugin": "^3.0.1",
"del": "^2.2.1",
"fastclick": "^1.0.6",
"history": "^3.0.0",
"path-to-regexp": "^1.5.3",
"pixrem": "^3.0.1",
"pleeease-filters": "^3.0.0",
"postcss": "^5.1.1",
"postcss-calc": "^5.3.0",
"postcss-color-function": "^2.0.1",
"postcss-custom-media": "^5.0.1",
"postcss-custom-properties": "^5.0.1",
"postcss-custom-selectors": "^3.0.0",
"postcss-flexbugs-fixes": "^2.0.0",
"postcss-import": "^8.1.2",
"postcss-media-minmax": "^2.1.2",
"postcss-nesting": "^2.3.1",
"postcss-selector-matches": "^2.0.1",
"postcss-selector-not": "^2.0.0",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^1.16.3",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.11.6",
"babel-runtime": "^6.11.6",
"css-loader": "^0.23.1",
"eslint": "^3.7.1",
"eslint-config-airbnb-base": "8.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^5.2.2",
"file-loader": "^0.9.0",
"json-loader": "^0.5.4",
"mocha": "^2.5.3",
"postcss-loader": "^0.9.1",
"react-hot-loader": "^3.0.0-beta.2",
"style-loader": "^0.13.1",
"stylelint": "^7.0.3",
"stylelint-config-standard": "^11.0.0",
"url-loader": "^0.5.7"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-1"
],
"plugins": [
"transform-runtime"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb"
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"string-quotes": "single"
}
},
"scripts": {
"lint": "eslint .",
"stylelint": "stylelint \"components/**/*.css\" \"pages/**/*.css\"",
"clean": "node run clean",
"build": "node run build",
"build:debug": "node run build --debug",
"start": "webpack-dev-server --debug --hot --inline --config ./webpack.config.js"
}
}