-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.33 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
{
"name": "app",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=6",
"npm": ">=3.8"
},
"dependencies": {
"babel-polyfill": "^6.9.1",
"classnames": "^2.2.5",
"fastclick": "^1.0.6",
"history": "^3.0.0",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-mdl": "^1.6.1",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"assets-webpack-plugin": "^3.4.0",
"autoprefixer": "^6.3.7",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"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.9.0",
"babel-runtime": "^6.9.2",
"browser-sync": "^2.13.0",
"chai": "^3.5.0",
"connect-history-api-fallback": "^1.2.0",
"css-loader": "^0.23.1",
"del": "^2.2.1",
"ejs": "^2.4.2",
"eslint": "^3.1.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.11.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^5.2.2",
"file-loader": "^0.9.0",
"firebase-tools": "^3.0.4",
"front-matter": "^2.1.0",
"fs-extra": "^0.30.0",
"highlight.js": "^9.5.0",
"json-loader": "^0.5.4",
"markdown-it": "^7.0.0",
"mocha": "^2.5.3",
"path-to-regexp": "^1.5.3",
"pixrem": "^3.0.1",
"pleeease-filters": "^3.0.0",
"postcss": "^5.1.0",
"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-import": "^8.1.2",
"postcss-loader": "^0.9.1",
"postcss-media-minmax": "^2.1.2",
"postcss-nesting": "^2.3.1",
"postcss-selector-matches": "^2.0.1",
"postcss-selector-not": "^2.0.0",
"react-hot-loader": "^3.0.0-beta.2",
"s3": "^4.4.0",
"style-loader": "^0.13.1",
"stylelint": "^7.0.3",
"stylelint-config-standard": "^11.0.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.1"
},
"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": {
"eslint": "eslint components core pages test utils main.js run.js webpack.config.js",
"stylelint": "stylelint \"components/**/*.css\" \"pages/**/*.css\"",
"lint": "npm run eslint && npm run stylelint",
"test": "mocha --compilers js:babel-register",
"test:watch": "mocha --compilers js:babel-register --reporter min --watch",
"clean": "node run clean",
"build": "node run build",
"build:debug": "node run build --debug",
"publish": "BUILD_PATH=../meet-tarantino.github.io node run publish-build --release && cd ../meet-tarantino.github.io && git add -A && git commit && git push origin master",
"publish-debug": "BUILD_PATH=../meet-tarantino.github.io node run publish-build && cd ../meet-tarantino.github.io && git add -A && git commit && git push origin master",
"start": "node run"
}
}