-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.76 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.76 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "methodsnote",
"description": "An Electron boilerplate with hot reloading for React and TypeScript.",
"version": "1.1.1",
"license": "PolyForm Small Business License 1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/sprout2000/electron-react-ts"
},
"engines": {
"node": ">=12.13.1"
},
"main": "dist/main.js",
"scripts": {
"start": "run-s clean build serve",
"dev": "run-p dev:*",
"dev:electron": "wait-on ./dist/index.html && cross-env NODE_ENV=\"development\" electron .",
"dev:tsc": "tsc -w -p tsconfig.main.json",
"dev:webpack": "webpack --watch --progress",
"predev": "rimraf dist",
"clean": "rimraf dist release",
"serve": "electron .",
"rebuild": "electron-rebuild -f -w better-sqlit3",
"build": "cross-env NODE_ENV=\"development\" webpack --config webpack.config.prod.ts --progress",
"build:prod": "cross-env NODE_ENV=\"production\" webpack --config webpack.config.prod.ts --progress",
"build:pack": "ts-node ./scripts/build.ts",
"package": "run-s clean build:prod build:pack",
"lint": "run-s lint:*",
"lint:eslint": "eslint . --ext .ts,.tsx --fix",
"lint:prettier": "prettier --write ."
},
"dependencies": {
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@journeyapps/sqlcipher": "^5.2.0",
"@mui/material": "^5.2.1",
"@mui/x-data-grid": "^5.0.1",
"better-sqlite3": "^7.4.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-table": "^7.7.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.4.1",
"@types/mini-css-extract-plugin": "^2.4.0",
"@types/node": "^16.11.6",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@types/react-table": "^7.7.8",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"electron": "^15.3.0",
"electron-builder": "^22.13.1",
"electron-rebuild": "^3.2.5",
"html-webpack-plugin": "^5.5.0",
"ifdef-loader": "^2.3.0",
"mini-css-extract-plugin": "^2.4.3",
"npm-run-all": "^4.1.5",
"postcss-loader": "^6.2.1",
"rimraf": "^3.0.2",
"sass": "^1.43.4",
"sass-loader": "^12.3.0",
"stylelint": "^14.1.0",
"stylelint-config-standard-scss": "^3.0.0",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1"
},
"optionalDependencies": {
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"electron-notarize": "^1.1.1",
"electron-reload": "^1.5.0",
"electron-search-devtools": "^1.5.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.4.1",
"wait-on": "^6.0.0"
}
}