-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
105 lines (105 loc) · 2.69 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
105
{
"name": "geluid-cra",
"version": "0.2.0",
"private": true,
"main": "public/electron.js",
"homepage": "./",
"dependencies": {
"@suldashi/lame": "^1.2.5",
"@types/classnames": "^2.2.10",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.149",
"@types/node": "^13.11.1",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.4",
"@types/react-select": "^3.0.11",
"@types/react-transition-group": "^4.2.4",
"classnames": "^2.2.6",
"connected-react-router": "^6.8.0",
"electron-is-dev": "^1.2.0",
"history": "^4.10.1",
"lodash": "^4.17.19",
"naudiodon": "^2.1.2",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1",
"react-select": "^3.1.0",
"react-transition-group": "^4.3.0",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"roboto-fontface": "^0.10.0",
"socket.io": "^2.3.0",
"socket.io-stream": "^0.9.1"
},
"scripts": {
"dev": "concurrently \"BROWSER=none yarn cra:start\" \"wait-on http://localhost:3000 && electron .\"",
"cra:start": "rescripts start",
"cra:build": "rescripts build",
"cra:eject": "react-scripts eject",
"test": "rescripts test",
"lint": "eslint './src/**/*.{js,jsx,ts,tsx}'",
"postinstall": "electron-builder install-app-deps",
"preelectron-pack": "yarn build",
"electron-pack": "build -mw",
"build-client": "cd client && npm run build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
"last 1 chrome version"
],
"development": [
"last 1 chrome version"
]
},
"devDependencies": {
"@rescripts/cli": "^0.0.14",
"@rescripts/rescript-env": "^0.0.12",
"concurrently": "^5.1.0",
"electron": "^8.2.4",
"electron-builder": "^22.4.1",
"husky": "^4.2.5",
"lint-staged": "^10.1.3",
"node-sass": "^4.13.1",
"typescript": "^3.8.3",
"wait-on": "^4.0.2"
},
"author": {
"name": "Geluid",
"email": "todo@todo.com",
"url": "https://github.com/kulek1/Geluid/"
},
"devEngines": {
"node": ">=10.x",
"npm": ">=5.x",
"yarn": ">=1.0"
},
"build": {
"appId": "com.mk.geluid",
"productName": "Geluid",
"copyright": "Copyright © 2019 ${author}",
"mac": {
"category": "public.app-category.utilities"
},
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint"
]
}
}