-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.25 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
{
"name": "radmila",
"version": "0.1.0",
"private": true,
"homepage": ".",
"main": "build/electron/main.js",
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.42",
"@types/react": "^16.9.35",
"@types/react-datepicker": "^3.1.1",
"@types/react-dom": "^16.9.8",
"firebase": "^7.17.2",
"react": "^16.13.1",
"react-datepicker": "^3.1.3",
"react-dom": "^16.13.1",
"react-modal": "^3.11.2",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.2",
"typescript": "^3.7.5"
},
"scripts": {
"start": "npm run watch:css && react-scripts start",
"build": "npm run build:css && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"postinstall": "electron-builder install-app-deps",
"electron:dev": "concurrently \"BROWSER=none npm start\" \"wait-on http://localhost:3000 && tsc -p electron -w\" \"wait-on http://localhost:3000 && tsc -p electron && electron .\"",
"electron:build": "npm build && tsc -p electron && electron-builder",
"build:css": "postcss src/styles/tailwind.css -o src/styles/main.css",
"watch:css": "postcss src/styles/tailwind.css -o src/styles/main.css"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/autoprefixer": "^9.7.2",
"@types/electron-devtools-installer": "^2.2.0",
"@types/nedb": "^1.8.9",
"@types/react-modal": "^3.10.5",
"@types/react-router-dom": "^5.1.5",
"autoprefixer": "^9.8.0",
"concurrently": "^5.2.0",
"electron": "^9.0.0",
"electron-builder": "^22.8.0",
"electron-devtools-installer": "^3.0.0",
"electron-is-dev": "^1.2.0",
"electron-reload": "^1.5.0",
"postcss-cli": "^7.1.1",
"tailwindcss": "^1.4.6",
"wait-on": "^5.0.0"
},
"build": {
"extends": null,
"files": [
"build/**/*"
],
"directories": {
"buildResources": "assets"
}
}
}