-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
{
"name": "lingualearn",
"version": "1.0.0",
"description": "Language learning application for South African indigenous languages",
"main": "src/main/index.js",
"private": true,
"scripts": {
"start": "concurrently \"npm run start:react\" \"npm run start:electron\"",
"start:react": "craco start",
"start:electron": "wait-on tcp:3000 && electron .",
"build": "craco build && electron-builder",
"test": "craco test",
"eject": "react-scripts eject"
},
"dependencies": {
"@radix-ui/react-tabs": "^1.0.4",
"@tailwindcss/forms": "^0.5.7",
"electron-is-dev": "^2.0.0",
"lucide-react": "^0.263.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ws": "^8.16.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@craco/craco": "^7.1.0",
"@types/node": "^20.10.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^28.0.0",
"electron-builder": "^24.9.1",
"postcss": "^8.4.32",
"react-scripts": "5.0.1",
"tailwindcss": "^3.4.0",
"typescript": "^4.9.5",
"wait-on": "^7.2.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}