-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.65 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.65 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "pathfinder",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/data-grid": "^4.0.0-alpha.8",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@tensorflow/tfjs": "^2.7.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"better-sqlite3": "^7.1.1",
"child_process": "^1.0.2",
"chokidar": "^3.4.3",
"compute-cosine-similarity": "^1.0.0",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"electron-is-dev": "^1.2.0",
"electron-json-storage": "^4.3.0",
"electron-titlebar-react-component": "^1.0.5",
"eslint-plugin-react-hooks": "^4.1.2",
"framer-motion": "^2.8.0",
"immutability-helper": "^3.1.1",
"material-ui-icons": "^1.0.0-beta.36",
"react": "^16.13.1",
"react-color": "^2.19.3",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.13.1",
"react-draggable": "^4.4.3",
"react-scripts": "3.4.3",
"react-tracked": "^1.4.2",
"reactjs-popup": "^2.0.4",
"reactn": "^2.2.7",
"recharts": "^1.8.5",
"sqlite3": "^5.0.0",
"string-comparison": "^1.0.9",
"string-cosine-similarity": "^2.0.1",
"wait-on": "^5.2.0"
},
"devDependencies": {
"electron": "^10.1.1",
"electron-builder": "^22.8.0",
"electron-rebuild": "^2.0.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"start-interface": "cross-env BROWSER=none npm run start",
"start-electron": "electron .",
"start-electron-after-interface": "wait-on http://localhost:3000 && npm run start-electron",
"dev": "concurrently -n interface,app 'npm:start-interface' 'npm:start-electron-after-interface'",
"dist": "npm run build && electron-builder --dir",
"postinstall": "electron-builder install-app-deps",
"release": "npm run build && electron-builder --publish=always"
},
"eslintConfig": {
"extends": "react-app"
},
"main": "./public/electron.js",
"homepage": "./",
"build": {
"appId": "Pathfinder",
"asar": false,
"copyright": "Copyright 2020 Flatline All rights reserved.",
"npmRebuild": true,
"files": [
"build/**/*",
"node_modules/**/*",
"package.json"
],
"directories": {
"buildResources": "public"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}