-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "flocc",
"productName": "Flocc",
"version": "0.3.9",
"description": "Flocc",
"private": true,
"engines": {
"node": ">=v14.16",
"npm": ">=7.7"
},
"author": {
"name": "Daniel Ciao",
"email": "[email protected]"
},
"repository": {
"url": "https://github.com/pluscubed/flocc.git"
},
"main": "packages/main/dist/index.cjs",
"scripts": {
"buildEnvTypes": "node scripts/buildEnvTypes.js",
"build": "node scripts/build.js",
"precompile": "cross-env MODE=production npm run build",
"compile": "electron-builder build --config electron-builder.config.js --dir --config.asar=false",
"pretest": "cross-env MODE=test npm run build",
"test": "node tests/app.spec.js",
"watch": "node scripts/watch.js",
"lint": "eslint . --ext js,jsx,ts,tsx",
"prerelease": "cross-env MODE=production npm run build",
"release": "env-cmd electron-builder build --config=electron-builder.config.js --publish=always",
"server-dev": "cross-env NODE_ENV=development node --experimental-json-modules server/server.js"
},
"browserslist": [
"Chrome 91"
],
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"pre-push": "npm run buildEnvTypes"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,html,css}": "prettier"
},
"devDependencies": {
"@types/electron-devtools-installer": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"@vitejs/plugin-react-refresh": "^1.3.1",
"autoprefixer": "^10.2.6",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"electron": "^13.1.2",
"electron-builder": "^22.11.5",
"electron-builder-notarize": "^1.2.0",
"electron-devtools-installer": "^3.2.0",
"env-cmd": "^10.1.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"lint-staged": "^11.0.0",
"postcss": "^8.3.5",
"prettier": "^2.2.1",
"simple-git-hooks": "^2.4.1",
"spectron": "^15.0.0",
"tailwindcss": "^2.2.2",
"typescript": "^4.3.4",
"vite": "^2.3.8"
},
"dependencies": {
"@fontsource/inter": "^4.4.1",
"@fontsource/open-sans": "^4.4.0",
"@fontsource/roboto": "^4.4.0",
"@fontsource/roboto-mono": "^4.4.0",
"@fontsource/space-mono": "^4.4.0",
"@getstation/electron-google-oauth2": "^2.1.0",
"@headlessui/react": "^1.2.0",
"@sentry/electron": "^2.5.0",
"@tailwindcss/aspect-ratio": "^0.2.1",
"@tailwindcss/forms": "^0.3.3",
"active-win": "^7.5.0",
"electron-first-run": "^3.0.0",
"electron-is-dev": "^2.0.0",
"electron-positioner": "^4.1.0",
"electron-updater": "^4.3.9",
"firebase": "8.6.3",
"is-electron": "^2.2.0",
"mitt": "^2.1.0",
"react": "^18.0.0-alpha-568dc3532",
"react-dom": "^18.0.0-alpha-568dc3532",
"react-player": "^2.9.0",
"react-promise-suspense": "^0.3.3",
"reactfire": "^3.0.0-rc.0",
"recoil": "^0.3.1",
"socket.io-client": "^4.1.2",
"webrtc-adapter": "^8.0.0",
"ytsr": "^3.4.0"
},
"prettier": {
"singleQuote": true
}
}