This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 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
{
"name": "supreme-registration-jp-bot",
"version": "0.0.1",
"private": true,
"scripts": {
"clean": "rimraf *.js",
"lint": "eslint src/**/*.{ts,tsx} --fix",
"dev": "webpack --config webpack/webpack.dev.js",
"watch": "webpack --config webpack/webpack.dev.js --watch",
"prod": "webpack --config webpack/webpack.prod.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@types/chrome": "^0.0.91",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/uuid": "^3.4.6",
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.8.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.4",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@material-ui/core": "^4.8.2",
"chrome-promise": "^3.0.5",
"dayjs": "^1.8.18",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"uuid": "^3.3.3"
}
}