-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.14 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.14 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
{
"name": "tsm",
"version": "0.1.0",
"private": true,
"main": "public/electron.js",
"author": "ALexey <aatryapko1201@gmail.com>",
"homepage": "./",
"build": {
"appId": "tsm",
"files": [
"build/**/*",
"node_modules/**/*"
],
"linux": {
"target": [
"deb",
"rpm"
],
"category": "Utility"
}
},
"dependencies": {
"@mrblenny/react-flow-chart": "^0.0.9",
"@nivo/line": "^0.61.1",
"electron-is-dev": "^1.1.0",
"evergreen-ui": "^4.23.0",
"formik": "^2.1.4",
"i18next": "^19.3.2",
"lodash": "^4.17.15",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-i18next": "^11.3.3",
"react-scripts": "3.4.0",
"uuid": "^3.3.2",
"yup": "^0.28.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"electron": "concurrently \"BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"electron-pack:linux": "electron-builder build --linux",
"electron-pack:win": "electron-builder build -w",
"electron-pack:mac": "electron-builder build -m",
"release": "yarn build && electron-builder",
"test": "echo success"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"babel-eslint": "10.0.3",
"concurrently": "^5.1.0",
"electron": "^8.0.2",
"electron-builder": "^22.3.6",
"eslint": "^6.8.0",
"eslint-config-babel": "^9.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^1.19.1",
"wait-on": "^4.0.0"
}
}