-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
102 lines (102 loc) · 3.5 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "boats-animator-2",
"version": "2.0.0-alpha.1",
"private": true,
"description": "A free, open-source stop motion animation program.",
"main": "./dist/main.js",
"author": {
"name": "Charlie Lee",
"email": "[email protected]",
"url": "https://www.charlielee.uk"
},
"homepage": "https://www.charlielee.uk/boats-animator",
"license": "GPL-3.0",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/charlielee/boats-animator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/charlielee/boats-animator.git"
},
"scripts": {
"start": "npm-run-all -p dev:react electron:serve",
"test": "jest",
"test-watch": "npm run test -- --watch",
"tsc": "tsc",
"lint": "eslint",
"format": "prettier . --write",
"dev:electron": "cross-env NODE_ENV=development webpack --config webpack/electron.webpack.ts --mode=development && npm run start:electron",
"dev:react": "cross-env NODE_ENV=development webpack-dev-server --config webpack/react.webpack.ts --mode=development",
"electron:serve": "wait-on http-get://localhost:4000/ && npm run dev:electron",
"start:electron": "electron .",
"build": "npm-run-all build:electron build:react",
"build:run": "npm-run-all build start:electron",
"build:electron": "webpack --config webpack/electron.webpack.ts --mode=production",
"build:react": "webpack --config webpack/react.webpack.ts --mode=production",
"package": "npm-run-all build package:dist",
"package:dist": "electron-builder"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "1.1.0",
"@mantine/core": "^7.13.4",
"@mantine/hooks": "^7.13.4",
"@mantine/notifications": "^7.13.4",
"@reduxjs/toolkit": "^2.2.7",
"classnames": "^2.5.1",
"dexie": "^4.0.8",
"dexie-react-hooks": "^1.1.7",
"electron-store": "^8.2.0",
"fast-glob": "^3.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-redux": "^9.1.2",
"react-router-dom": "^6.26.2",
"uuid": "^11.0.0-0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/ffmpeg-installer__ffmpeg": "^1.0.2",
"@types/jest": "^29.5.13",
"@types/node": "~20.9",
"@types/react": "^18.3",
"@types/react-dom": "^18.3",
"@types/w3c-image-capture": "^1.0.10",
"@types/webpack-node-externals": "^3.0.4",
"@types/wicg-file-system-access": "^2023.10.5",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"electron": "^29.4.6",
"electron-builder": "^25.0.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-webpack-plugin": "^4.2.0",
"fake-indexeddb": "^5.0.2",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.3.3",
"style-loader": "^4.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"wait-on": "^8.0.1",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-node-externals": "^3.0.0"
}
}