-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2 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
67
68
69
70
71
{
"name": "flickstats",
"productName": "FlickStats",
"version": "1.0.0",
"description": "script analysis application",
"main": ".webpack/main",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint --ext .ts,.tsx .",
"test": "jest",
"tsc": "tsc -v && tsc --noEmit --skipLibCheck --incremental",
"prepare": "husky",
"precommit": "npm run tsc && npm run lint && npm run test"
},
"packagerConfig": {
"icon": "./icons/icon.icns"
},
"keywords": [],
"author": {
"name": "DoneDeal0",
"email": "ap.lanoe@outlook.com"
},
"license": "MIT",
"devDependencies": {
"@electron-forge/cli": "^6.0.4",
"@electron-forge/maker-dmg": "^6.0.5",
"@electron-forge/plugin-webpack": "^6.0.4",
"@svgr/webpack": "^6.5.1",
"@swc/cli": "^0.1.59",
"@swc/core": "^1.3.26",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@vercel/webpack-asset-relocator-loader": "1.7.3",
"css-loader": "^6.0.0",
"electron": "22.0.2",
"eslint": "^8.0.1",
"eslint-plugin-import": "^2.25.0",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"husky": "^9.0.11",
"jest": "^29.7.0",
"node-loader": "^2.0.0",
"prettier": "^3.0.1",
"style-loader": "^3.0.0",
"swc-loader": "^0.2.3",
"ts-node": "^10.0.0",
"typescript": "~4.9.4",
"typescript-plugin-css-modules": "^4.1.1"
},
"dependencies": {
"chart.js": "^4.1.2",
"electron-squirrel-startup": "^1.0.0",
"pdfjs-dist": "^3.4.120",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.6.2",
"use-debounce": "^9.0.3"
},
"engines": {
"node": ">=18.16.0"
}
}