-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.42 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
{
"name": "react-todo-app",
"description": "A simple todo-list app.",
"author": {
"email": "z_max_y@163.com",
"name": "streakingman"
},
"build": {
"productName": "React Todo App",
"appId": "com.electron.streakingman.todo",
"directories": {
"output": "build"
},
"mac": {
"category": "your.app.category.type"
},
"win": {
"target": [
{
"target": "nsis"
}
]
}
},
"private": true,
"version": "0.0.0",
"main": "main.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:electron": "tsc && cross-env ELECTRON=true vite build",
"preview": "vite preview",
"prepare": "husky install",
"release:first": "standard-version -- --first-release",
"release": "standard-version",
"electorn:dev": "npm run build:electron && electron .",
"electron:pack": "electron-builder --dir",
"electron:dist": "electron-builder"
},
"dependencies": {
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@fontsource/roboto": "^4.5.3",
"@mui/icons-material": "^5.5.0",
"@mui/material": "^5.5.0",
"@types/lodash": "^4.14.181",
"classnames": "^2.3.1",
"gsap": "^3.10.2",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"@vitejs/plugin-react": "^1.0.7",
"cross-env": "^7.0.3",
"electron": "^18.0.3",
"electron-builder": "^23.0.3",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2",
"sass": "^1.50.0",
"standard-version": "^9.3.2",
"stylelint": "^14.6.1",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^3.0.0",
"typescript": "^4.5.4",
"vite": "^2.8.0"
}
}