-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.67 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.67 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
{
"name": "confinementgui",
"author": {
"name": "David Luca",
"email": "dl11developer@gmail.com"
},
"description": "Application centralisant ED et Pearltrees",
"version": "0.5.0",
"private": true,
"homepage": "./",
"main": "public/main.js",
"dependencies": {
"@craco/craco": "^6.1.1",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@tailwindcss/postcss7-compat": "^2.0.2",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"autoprefixer": "^9.8.6",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"crypto-js": "^4.0.0",
"electron-is-dev": "^1.2.0",
"esm": "^3.2.25",
"firebase": "^8.2.9",
"node-notifier": "^9.0.0",
"react": "^17.0.1",
"react-datepicker": "^3.4.1",
"react-dom": "^17.0.1",
"react-scripts": "4.0.1",
"sqlite3": "^5.0.2",
"systeminformation": "^5.6.2",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.2",
"urllib": "^2.36.1",
"wait-on": "^5.2.1",
"web-vitals": "^0.2.4"
},
"build": {
"appId": "com.dl11.confinementGUI",
"productName": "Confinement GUI",
"copyright": "Copyright © 2021 David Luca"
},
"scripts": {
"test": "craco test",
"eject": "craco eject",
"electron-dev": "set ELECTRON_START_URL=http://localhost:3000 && electron .",
"build:electron": "mkdir ./build/src && robocopy electron build/electron /S",
"react-build": "set GENERATE_SOURCEMAP=false && craco build",
"package": "electron-builder build --win -c.extraMetadata.main=build/main.js --publish never",
"clear-build": "rm -r -f ./build ; rm -r -f ./dist",
"react-start": "react-scripts start",
"craco-start": "craco start",
"react-test": "react-scripts test",
"react-eject": "react-scripts eject",
"electron-build": "electron-builder",
"build": "npm run react-build && npm run electron-build",
"build:tailwindcss": "tailwind build src/tailwindcss.source.css -o src/tailwind.output.css",
"start": "set ELECTRON_START_URL=http://localhost:3000 && concurrently \"cross-env BROWSER=none npm run craco-start\" \"wait-on http://localhost:3000 && electron .\" "
},
"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": {
"electron": "^11.2.3",
"electron-builder": "^22.9.1",
"imports-loader": "^2.0.0",
"stylelint-config-recommended": "^3.0.0"
}
}