This repository has been archived by the owner on Jul 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
70 lines (70 loc) · 2.08 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
{
"name": "svg-editor",
"version": "0.1.0",
"description": "",
"private": true,
"main": "electron.main.js",
"scripts": {
"dev": "webpack serve",
"build": "webpack --env prod",
"electron": "electron .",
"electron:package": "cross-env ELECTRON_BUILDER_BINARIES_MIRROR=http://npm.taobao.org/mirrors/electron/ electron-builder build --publish never",
"test": "jest",
"prepare": "husky install"
},
"keywords": [],
"author": "fstar",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^4.11.2",
"classnames": "^2.3.1",
"react": "^17.0.1",
"react-color": "^2.19.3",
"react-dom": "^17.0.1",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.20",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^4.12.0",
"autoprefixer": "^10.3.3",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"electron-builder": "^22.9.1",
"eslint": "^7.17.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^4.5.0",
"husky": "^8.0.1",
"jest": "^26.6.3",
"less": "^4.1.1",
"less-loader": "^10.0.1",
"lint-staged": "^13.0.3",
"mini-css-extract-plugin": "^1.3.3",
"postcss": "^8.3.6",
"postcss-loader": "^6.1.1",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.1",
"ts-loader": "^8.0.14",
"typescript": "^4.8.4",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
}
}