-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.64 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "app",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=6",
"npm": ">=3.8"
},
"dependencies": {
"babel-polyfill": "^6.22.0",
"classnames": "^2.2.5",
"fastclick": "^1.0.6",
"history": "^4.5.1",
"md5": "^2.2.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-mdl": "^1.9.0",
"react-redux": "^5.0.2",
"react-slick": "^0.14.5",
"redux": "^3.6.0",
"redux-actions": "^1.2.1",
"reselect": "^2.5.4",
"slick-carousel": "^1.6.0",
"whatwg-fetch": "^2.0.2"
},
"devDependencies": {
"assets-webpack-plugin": "^3.5.0",
"autoprefixer": "^6.6.1",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-latest": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-1": "^6.22.0",
"babel-register": "^6.22.0",
"babel-runtime": "^6.22.0",
"browser-sync": "^2.18.6",
"chai": "^4.0.0-canary.1",
"connect-history-api-fallback": "^1.3.0",
"css-loader": "^0.26.1",
"ejs": "^2.5.5",
"enzyme": "^2.7.0",
"eslint": "^3.13.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",
"file-loader": "^0.9.0",
"firebase-tools": "^3.2.1",
"flux-standard-action": "^1.1.0",
"front-matter": "^2.1.1",
"highlight.js": "^9.9.0",
"jsdom": "^9.9.1",
"json-loader": "^0.5.4",
"markdown-it": "^8.2.2",
"mocha": "^3.2.0",
"path-to-regexp": "^1.7.0",
"pixrem": "^3.0.2",
"pleeease-filters": "^3.0.0",
"postcss": "^5.2.10",
"postcss-calc": "^5.3.1",
"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.1.0",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.2.2",
"postcss-media-minmax": "^2.1.2",
"postcss-nesting": "^2.3.1",
"postcss-selector-matches": "^2.0.5",
"postcss-selector-not": "^2.0.0",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "^3.0.0-beta.2",
"rimraf": "^2.5.4",
"s3": "^4.4.0",
"sinon": "^1.17.7",
"style-loader": "^0.13.1",
"stylelint": "^7.7.1",
"stylelint-config-standard": "^15.0.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.0",
"webpack-dev-middleware": "^1.9.0",
"webpack-hot-middleware": "^2.15.0"
},
"babel": {
"presets": [
"latest",
"stage-1",
"react"
],
"plugins": [
"transform-runtime"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"rules": {
"react/jsx-filename-extension": "off",
"react/require-default-props": "off",
"import/no-extraneous-dependencies": "off"
},
"env": { "browser": true }
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"string-quotes": "single"
}
},
"scripts": {
"eslint": "eslint components src test",
"stylelint": "stylelint \"components/**/*.css\" \"src/**/*.css\"",
"lint": "npm run eslint && npm run stylelint",
"test": "mocha --compilers js:babel-register tools/browser.js ./components/**/*.spec.js ./src/**/*.spec.js",
"test:watch": "mocha --compilers js:babel-register --reporter min --watch tools//browser.js ./components/**/*.spec.js ./src/**/*.spec.js",
"build": "node tools/build.js",
"build:debug": "node tools/build.js --debug",
"publish": "node tools/publish.js",
"publish:debug": "node tools/publish.js --debug",
"start": "node tools/run.js"
}
}