-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.08 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.08 KB
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
{
"main": "public/main.js",
"homepage": "./",
"name": "my-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@tanstack/react-query": "^5.35.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.96",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"axios": "^1.6.8",
"cors": "^2.8.5",
"electron-is-dev": "^3.0.1",
"framer-motion": "^11.1.7",
"json-server": "^1.0.0-beta.0",
"msw": "^2.3.0",
"react": "^18.3.1",
"react-audio-voice-recorder": "^2.2.0",
"react-devtools": "^5.1.0",
"react-dom": "^18.3.1",
"react-router": "^6.23.1",
"react-router-dom": "^6.23.1",
"react-scripts": "5.0.1",
"react-voice-recorder": "^2.1.2",
"recoil": "^0.7.7",
"recoil-sync": "^0.2.0",
"recorder-js": "^1.0.7",
"styled-components": "^6.1.9",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4",
"yarn": "^1.22.22"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron": "wait-on http://localhost:3000 && electron .",
"compile-main": "tsc ./src/main/main.js --outdir ./compile-main && tsc ./src/main/preload.js --outdir ./compile-main",
"start2": "json-server --watch src/mocking/db.json --port 4000",
"dev": "concurrently \"yarn start\" \"yarn electron\"",
"div": "yarn start"
},
"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": {
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^30.0.2",
"electron-builder": "^24.13.3",
"wait-on": "^7.2.0"
},
"type": "module",
"msw": {
"workerDirectory": [
"public"
]
}
}