forked from OpenDevUFCG/glossario-ufcg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.92 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
{
"name": "glossario-ufcg",
"version": "0.1.0",
"description": "Glossário de siglas e gírias da UFCG",
"homepage": "https://opendevufcg.github.io/glossario-ufcg/",
"repository": "https://github.com/OpenDevUFCG/glossario-ufcg",
"license": "MIT",
"private": true,
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.0",
"antd": "^3.14.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"husky": "^1.3.1",
"prop-types": "^15.7.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-hot-loader": "^4.12.10",
"react-markdown": "^4.0.6",
"react-router-prop-types": "^1.0.4",
"react-scripts": "2.1.3",
"webpack-merge": "^4.2.1",
"ol": "6.0.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint && node src/scripts/orderData.js && git add src/lib"
}
},
"scripts": {
"start": "webpack-dev-server --config ./webpack/webpack.dev.js --progress --colors",
"build": "webpack --config ./webpack/webpack.prod.js",
"lint": "eslint .",
"prettier": "prettier --write '**/*.{js,jsx,html,css}'"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-react": "^7.0.0",
"babel": "^6.23.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"css-hot-loader": "^1.4.3",
"css-loader": "^2.1.0",
"eslint": "^5.12.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"prettier": "^1.18.2",
"react-dev-utils": "^7.0.1",
"react-router-dom": "^4.3.1",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
}
}