-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
84 lines (84 loc) · 2.26 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
{
"private": true,
"name": "istanbuljs-website",
"homepage": "http://istanbul.js.org/",
"github": "https://github.com/istanbuljs",
"twitter": "",
"repository": "https://github.com/istanbuljs/istanbuljs.github.io.git",
"scripts": {
"build": "phenomic build",
"lint:js": "eslint --ignore-path .gitignore --fix .",
"lint:css": "stylelint \"src/**/*.css\"",
"lint": "npm-run-all --parallel lint:*",
"start": "phenomic start",
"pretest": "npm run lint",
"test": "npm run build"
},
"phenomic": {
"CNAME": true
},
"babel": {
"presets": [
"babel-preset-react",
"babel-preset-es2015",
"babel-preset-stage-1"
],
"env": {
"production": {
"presets": [
"babel-preset-react-optimize"
]
}
}
},
"stylelint": {
"extends": "stylelint-config-standard"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.0.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-1": "^6.3.13",
"css-loader": "^0.28.0",
"eslint": "^3.14.1",
"eslint-config-i-am-meticulous": "^5.0.2",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.11.0",
"highlight.js": "^9.6.0",
"history": "^4.5.1",
"invariant": "^2.1.1",
"json-loader": "^0.5.2",
"lowlight": "^1.2.0",
"npm-run-all": "^4.0.1",
"phenomic": "^0.16.2",
"postcss-browser-reporter": "^0.5.0",
"postcss-cssnext": "^2.4.0",
"postcss-loader": "^1.2.2",
"postcss-reporter": "^3.0.0",
"raw-loader": "^0.5.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-helmet": "^5.0.3",
"react-lowlight": "^1.0.2",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"react-svg-inline": "^1.1.0",
"react-topbar-progress-indicator": "^1.0.0",
"redux": "^3.6.0",
"style-loader": "^0.13.1",
"stylelint": "^7.9.0",
"stylelint-config-standard": "^16.0.0",
"webpack": "^1.12.1",
"whatwg-fetch": "^2.0.2"
},
"dependencies": {
"classnames": "^2.2.5"
}
}