-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
63 lines (63 loc) · 1.91 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
{
"private": true,
"dependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@fortawesome/fontawesome-svg-core": "^6.1.2",
"@fortawesome/free-solid-svg-icons": "^6.1.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@octokit/plugin-throttling": "^4.3.2",
"@octokit/rest": "^19.0.4",
"@types/lodash": "^4.14.184",
"assert-never": "^1.2.1",
"bootstrap": "^5.2.0",
"graphql": "^16.6.0",
"graphql-request": "^4.3.0",
"lodash": "^4.17.21",
"mobx": "^6.6.1",
"mobx-react-lite": "^3.4.0",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-bootstrap": "^2.5.0",
"react-dom": "^18.2.0",
"react-spinners": "^0.13.4"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@octokit/core": "^4.0.5",
"@types/chrome": "^0.0.195",
"@types/jest": "^28.1.7",
"@types/node": "^18.7.10",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"style-loader": "^3.3.1",
"ts-jest": "^28.0.8",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.6.1",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.0"
},
"scripts": {
"start": "webpack serve",
"watch": "tsc --noEmit --watch",
"build": "rm -rf dist; webpack --mode production",
"test": "jest",
"lint:check": "eslint \"src/**/*.ts\" \"src/**/*.tsx\"",
"lint:fix": "eslint --fix \"src/**/*.ts\" \"src/**/*.tsx\""
}
}