-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.63 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
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
94
95
96
97
98
{
"name": "react-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@capacitor-community/barcode-scanner": "^2.0.1",
"@capacitor/android": "^3.2.2",
"@capacitor/app": "^1.0.3",
"@capacitor/core": "^3.2.2",
"@capacitor/ios": "^3.2.2",
"@craco/craco": "^6.2.0",
"@headlessui/react": "^1.4.0",
"@heroicons/react": "^1.0.4",
"@nivo/bar": "^0.74.0",
"@nivo/core": "^0.74.0",
"@reduxjs/toolkit": "^1.6.0",
"@tailwindcss/forms": "^0.3.3",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"axios": "^0.21.2",
"electron-is-dev": "^2.0.0",
"formik": "^2.2.9",
"invert-color": "^2.0.0",
"md5": "^2.3.0",
"qrcode.react": "^1.0.1",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-outside-click-handler": "^1.3.0",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-transition-group": "^4.4.2",
"sass": "^1.49.9",
"typescript": "^4.6.2",
"web-vitals": "^1.0.1",
"yup": "^0.32.9"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"electron-start": "concurrently \"BROWSER=none npm start\" \"wait-on http://localhost:3000 && electron .\"",
"electron-package": "./node_modules/.bin/electron-builder -c.extraMetadata.main=build/electron.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"prettier"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@capacitor/cli": "^3.2.2",
"@types/react-router-dom": "^5.3.3",
"autoprefixer": "^9.8.6",
"concurrently": "^6.2.0",
"electron": "^13.1.0",
"electron-builder": "^22.10.5",
"eslint-config-prettier": "^8.5.0",
"postcss": "^7.0.36",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.7",
"wait-on": "^5.3.0"
},
"homepage": "./",
"build": {
"appId": "com.peak.react-app",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
},
"license": "UNLICENSED"
}