-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.74 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
{
"name": "z-captcha",
"version": "0.0.1",
"private": true,
"main": "dist/main.js",
"scripts": {
"clean": "rimraf dist/*.js",
"dev:main": "webpack --config webpack/webpack.server.js",
"dev:renderer": "webpack --config webpack/webpack.renderer.dev.js",
"dev": "run-p dev:*",
"prestart": "run-s dev",
"start": "electron ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
},
"devDependencies": {
"@types/express": "^4.17.7",
"@types/mysql": "^2.15.15",
"@types/node": "^12.12.6",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"electron": "5.0.13",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-loader": "^8.0.1",
"typescript": "^3.9.7",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.0.9",
"webpack-node-externals": "^2.5.0"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"electron-store": "^6.0.0",
"express": "^4.17.1",
"promise-mysql": "^4.1.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-google-recaptcha": "^2.1.0",
"snakecase-keys": "^3.2.0"
}
}