This repository has been archived by the owner on May 28, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
66 lines (66 loc) · 2.03 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
{
"name": "IssueAi",
"version": "1.0.0",
"description": "O IssueAi cria um espaço de visibilidade para os projetos open source criado por alunos da Computação@UFCG.",
"repository": "https://github.com/OpenDevUFCG/IssueAi",
"author": "OpenDevUFCG",
"license": "MIT",
"scripts": {
"build": "webpack --config ./webpack/webpack.prod.js",
"dev": "webpack-dev-server --config ./webpack/webpack.dev.js --progress --colors --inline --hot --host 0.0.0.0",
"lint": "eslint .",
"prettier": "prettier --write \"src/**/*.js\""
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.1",
"dotenv-webpack": "^1.7.0",
"eslint": "^5.8.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-hooks": "^2.3.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.1.3",
"mini-css-extract-plugin": "^0.4.4",
"prettier": "^1.14.3",
"pretty-quick": "^1.8.0",
"ramda": "^0.26.1",
"react-dev-utils": "^6.1.1",
"style-loader": "^0.23.1",
"url-loader": "^2.2.0",
"webpack": "^4.24.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.11",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"apollo-boost": "^0.4.4",
"apollo-link": "^1.2.13",
"axios": "^0.18.0",
"blueprint-css": "^3.0.0-beta.0",
"graphql": "^14.5.8",
"prop-types": "^15.7.2",
"ramda": "^0.26.1",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-emoji-render": "^1.0.0",
"react-markdown": "^4.2.2",
"react-router-dom": "^4.3.1",
"react-tooltip": "^3.11.1"
}
}