-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.97 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.97 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "mapleleaf",
"author": {
"name": "ETSOO",
"email": "info@etsoo.com",
"url": "https://www.etsoo.com"
},
"description": "Students management system of Maple Leaf Collegiate",
"version": "1.0.2",
"main": "public/electron.ts",
"homepage": "./",
"dependencies": {
"@etsoo/shared": "^1.0.5",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@testing-library/jest-dom": "^5.11.2",
"@testing-library/react": "^10.4.8",
"@testing-library/user-event": "^12.1.1",
"@types/jest": "^26.0.9",
"@types/node": "^14.0.27",
"@types/react": "^16.9.45",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/recharts": "^1.8.14",
"@types/yup": "^0.29.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"recharts": "^1.8.5",
"typescript": "^3.9.7",
"yup": "^0.29.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"format": "prettier --write src/**/*.{ts,tsx}",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --ext .ts,.tsx src/",
"electron": "concurrently \"set BROWSER=none&&npm start\" \"wait-on http://localhost:3000&&set ELECTRON_ENV=development&&electron .\"",
"package": "npm run build&&electron-builder build"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"concurrently": "^5.3.0",
"electron-builder": "^22.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"prettier": "^2.0.5"
},
"build": {
"appId": "app.ca.mapleleafcollegiate",
"copyright": "Copyright ©2020 Maple Leaf Collegiate",
"productName": "Maple Leaf Collegiate",
"files": [
"build/",
"dist/",
"public/electron.ts",
"!node_modules/"
],
"mac": {
"icon": "public/logo512.png",
"category": "public.app-category.utilities"
},
"win": {
"icon": "public/logo512.png",
"target": [
"nsis",
"msi"
]
}
}
}