-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) Β· 2.17 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
{
"name": "gdg-react-workshop",
"version": "0.1.0",
"private": true,
"homepage": "./",
"main": "build/electron/main.js",
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"lint": "eslint ./src --ext \".js,.jsx,.ts,.tsx\" && stylelint \"./src/**/*.css\"",
"lint:fix": "eslint ./src --ext \".js,.jsx,.ts,.tsx\" --fix && stylelint \"./src/**/*.css\" --fix",
"start": "nf start -p 3000",
"test": "react-scripts test",
"build-electron": "tsc --project electron/tsconfig.json",
"start-electron": "ts-node --skip-project electron/connect-electron.ts",
"watch-electron": "tsc --watch --project electron/tsconfig.json",
"start-react": "cross-env BROWSER=none react-scripts start",
"dist": "npm run build && npm run build-electron && electron-builder build -c.extraMetadata.main=build/electron/main.js"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"classnames": "^2.2.6",
"electron-store": "^6.0.0",
"localforage": "^1.9.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-perfect-scrollbar": "^1.5.8",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"react-stack-grid": "^0.7.1"
},
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/electron-store": "^3.2.0",
"@types/jest": "^26.0.10",
"@types/material-ui": "^0.21.8",
"@types/node": "14.6.1",
"@types/react": "^16.9.48",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"cross-env": "^7.0.2",
"electron": "^10.0.0",
"electron-builder": "^22.8.0",
"eslint-plugin-react": "^7.20.6",
"foreman": "^3.0.1",
"nodemon": "^2.0.4",
"stylelint": "^13.6.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"build": {
"appId": "com.electron.gdg-react-workshop",
"directories": {
"buildResources": "public"
}
}
}