-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.31 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
{
"name": "up",
"description": "your description",
"author": "Haze",
"version": "1.1.0",
"private": true,
"main": "./public/electron.js",
"repository": {
"type": "git",
"url": "https://github.com/CroquetMickael/up.git"
},
"dependencies": {
"@lukeed/uuid": "^2.0.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"auto-launch": "^5.0.5",
"bottleneck": "^2.19.5",
"chokidar": "^3.5.2",
"echarts": "^5.2.0",
"electron-devtools-installer": "^3.2.0",
"electron-updater": "^4.3.9",
"i18next": "^21.8.16",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.18.3",
"react-icons": "^4.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"stormdb": "^0.5.2",
"web-vitals": "^1.0.1"
},
"build": {
"productName": "up",
"appId": "com.up.app",
"directories": {
"buildResources": "build",
"output": "dist"
},
"win": {
"icon": "public/app.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"allowElevation": true
},
"files": [
"**/*",
"build/**/*",
"assets/**/*",
"!dist/**/*",
"!src/**/*",
"node_modules/**/*"
]
},
"homepage": "./",
"scripts": {
"start": "vite",
"dev": "nf start",
"build": "vite build --base=./",
"test": "react-scripts test",
"electron": "electron .",
"dist": "npm run build && electron-builder --publish never",
"publish": "electron-builder --publish"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@vitejs/plugin-react-refresh": "^1.3.3",
"autoprefixer": "^9.8.6",
"cross-env": "^7.0.3",
"electron": "^12.0.2",
"electron-builder": "^22.10.5",
"foreman": "^3.0.1",
"msw": "^0.35.0",
"postcss": "^7.0.36",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.9",
"vite": "^2.3.8"
},
"msw": {
"workerDirectory": "public"
}
}