-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "brychanio",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "eslint \"src/**/*.{js,jsx}\" -c .eslintrc"
}
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@symfony/webpack-encore": "^0.22.1",
"babel-eslint": "^10.0.1",
"classnames": "^2.2.6",
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-react-app": "^3.0.5",
"eslint-plugin-flowtype": "2.50.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"hoist-non-react-statics": "^3.2.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.0",
"node-sass": "^4.10.0",
"normalize.css": "^8.0.1",
"prettier": "^1.15.3",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-router-dom": "^4.3.1",
"sass-loader": "^7.1.0",
"webpack-loader": "^0.0.1"
},
"scripts": {
"start": "encore dev-server --hot --port 8081",
"build": "encore production"
}
}