-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.53 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
{
"name": "react-icon-lib",
"version": "0.0.1",
"main": "lib/IconLib.js",
"scripts": {
"build": "yarn run build:js",
"build:js": "webpack --env build",
"build:css": "node-sass src/style.scss lib/style.css --output-style compressed",
"lint-staged": "lint-staged",
"dev": "webpack --progress --colors --watch --env dev"
},
"lint-staged": {
"*.js": [
"git add",
"eslint ."
],
"*.scss": [
"sass-lint --max-warnings 0 -v"
]
},
"pre-commit": [
"lint-staged"
],
"keywords": [
"babel",
"react",
"webpack"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.5",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"lint-staged": "^4.0.2",
"node-sass": "^4.5.3",
"pre-commit": "^1.2.2",
"style-loader": "^0.18.2",
"svg-inline-loader": "^0.8.0",
"webpack": "^3.4.1",
"yargs": "^8.0.2"
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"classnames": "^2.2.5",
"glamor": "2.20.40",
"glamorous": "4.8.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"svgo-loader": "1.2.1"
}
}