-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.87 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.87 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
{
"name": "electron-quick-start",
"version": "1.0.0",
"description": "A minimal Electron application",
"main": "public/electron-starter.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"dev": "concurrently -k \"BROWSER=none yarn start\" \"yarn electron\"",
"electron": "wait-on tcp:3000 && electron .",
"lint": "eslint --ext ts,tsx,js,jsx src/",
"fixlint": "eslint --fix --ext ts,tsx,js,jsx src/"
},
"repository": "https://github.com/Fatezhang/appInNodeDemo",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "GitHub",
"license": "CC0-1.0",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-syntax-flow": "^7.16.7",
"@babel/plugin-transform-react-jsx": "^7.16.7",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.2",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"autoprefixer": "^10.4.2",
"concurrently": "^7.0.0",
"electron": "^16.0.7",
"electron-is-dev": "^2.0.0",
"eslint": "^8.6.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^5.0.3",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"postcss-loader": "^6.2.1",
"prettier": "2.5.1",
"pretty-quick": "3.1.3",
"react-is": "^17.0.2",
"tailwindcss": "^3.0.15",
"wait-on": "^6.0.0",
"webpack": "^5.66.0"
},
"dependencies": {
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.1",
"react-scripts": "^5.0.0",
"typescript": "^4.5.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}