-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.89 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
{
"name": "geno",
"productName": "Geno",
"description": "An IDE for integrating multimodal input and voice commands into web apps",
"author": "UCLA HCI",
"version": "0.0.1",
"private": true,
"main": "public/electron.js",
"homepage": "./",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/react-fontawesome": "^0.1.8",
"@tippy.js/react": "^2.2.3",
"acorn": "^6.4.1",
"acorn-loose": "^6.1.0",
"chokidar": "^3.3.1",
"codemirror": "^5.52.0",
"electron-is-dev": "^1.1.0",
"electron-localshortcut": "^3.2.1",
"electron-prompt": "^1.5.1",
"express": "^4.17.1",
"lodash-id": "^0.14.0",
"lowdb": "^1.0.0",
"react": "^16.13.0",
"react-codemirror2": "^5.1.0",
"react-dom": "^16.13.0",
"react-scripts": "2.1.8",
"react-split": "^2.0.7",
"react-treebeard": "^3.2.4",
"redux": "^4.0.5",
"serve-static": "^1.14.1",
"typescript": "^3.8.2"
},
"scripts": {
"start": "react-scripts start",
"electron": "electron .",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"preelectron-pack": "yarn build",
"electron-pack": "electron-builder -c.extraMetadata.main=build/electron.js",
"postinstall": "electron-builder install-app-deps"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"electron": "^4.2.12",
"electron-builder": "^22.4.0"
},
"build": {
"appId": "edu.uclahci.geno",
"productName": "Geno",
"mac": {
"category": "Developer Tools"
},
"files": [
"build/**/*",
"node_modules/**/*"
],
"extraResources": [
"exported"
],
"directories": {
"buildResources": "assets"
}
}
}