This repository has been archived by the owner on Apr 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2 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
{
"name": "mse",
"version": "0.1.1",
"private": true,
"main": "public/electron.js",
"repository": {
"type": "git",
"url": "https://github.com/anoopkcn/mse.git"
},
"author": "Anoop Chandran <[email protected]>",
"description": "Materials Simulation Environment",
"homepage": "./",
"build": {
"appId": "com.mse",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
},
"linux": {
"target": [
"AppImage",
"deb",
"rpm"
]
}
},
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.9.1",
"@material-ui/icons": "^4.9.1",
"clsx": "^1.1.0",
"cross-env": "^5.2.1",
"date-fns": "^2.9.0",
"electron-is-dev": "^1.1.0",
"material-table": "^1.57.1",
"mousetrap": "^1.6.5",
"pg": "^7.18.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-modal": "^3.11.1",
"react-scripts": "^3.3.1",
"react-virtualized": "^9.21.2"
},
"scripts": {
"react_start": "react-scripts start",
"react-build": "react-scripts build",
"react-test": "react-scripts test",
"react-eject": "react-scripts eject",
"electron-build": "electron-builder",
"release": "npm run react-build && electron-builder --publish=always",
"build": "npm run react-build && mkdir -p build/src && cp -r src/shared/. build/src/shared && npm run electron-build",
"start": "concurrently \"BROWSER=none npm run react_start\" \"wait-on http://localhost:3000 && electron .\"",
"clean": "rm -rf build dist"
},
"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": {
"concurrently": "^4.1.2",
"electron": "^6.1.7",
"electron-builder": "^21.2.0",
"wait-on": "^3.3.0"
}
}