-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.6 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
{
"name": "react-flag-icon-css-example-multi",
"version": "1.0.0",
"description": "Example project for React Flag Icon Css",
"main": "server.js",
"keywords": [
"react",
"react-flag-icon-css",
"flag-icon-css",
"flag-icon",
"flag-icons",
"react-css-modules"
],
"author": {
"name": "matteocng",
"email": "[email protected]",
"url": "https://github.com/matteocng"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/matteocng/react-flag-icon-css-example-multi.git"
},
"scripts": {
"start": "cross-env USE_CSS_MODULES=true NODE_ENV=development babel-node webpack/server.js",
"start:classes": "cross-env USE_CSS_MODULES=false NODE_ENV=development babel-node webpack/server.js",
"flow": "flow --include-warnings",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint src webpack",
"lint:js:fix": "eslint src webpack --fix",
"lint:css": "sass-lint 'src/**/*.scss' -v -q",
"lint:fix": "eslint src webpack --fix",
"pre-commit": "validate-commit-msg && npm run test",
"test": "npm run lint:js && npm run lint:css && npm run flow && npm audit"
},
"pre-commit": "pre-commit",
"dependencies": {
"classnames": "^2.2.6",
"node-sass": "4.11.0",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-css-modules": "^4.7.4",
"react-dom": "^16.7.0",
"react-flag-icon-css": "^1.0.25"
},
"devDependencies": {
"autoprefixer": "^9.0.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-preset-react-app": "^3.1.2",
"babel-runtime": "^6.26.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"eslint": "^5.2.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"file-loader": "^1.1.11",
"flow-bin": "^0.77.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.0.0-rc.13",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.4.1",
"postcss-loader": "^2.1.6",
"sass-lint": "^1.12.1",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"validate-commit": "^3.4.0",
"webpack": "^4.16.2",
"webpack-dev-server": "^3.1.14"
},
"babel": {
"presets": [
"react-app"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
}
}