-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.18 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.18 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
{
"name": "Quack_The_Code",
"version": "0.1.0",
"private": true,
"main": "public/electron.js",
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"axios": "^0.21.2",
"cross-env": "^7.0.2",
"electron-is-dev": "^1.2.0",
"is-electron": "^2.2.0",
"lodash": "^4.17.21",
"moment": "^2.29.2",
"react": "^16.13.1",
"react-confetti": "^5.0.1",
"react-dom": "^16.13.1",
"react-github-login": "^1.0.3",
"react-modal": "^3.11.2",
"react-responsive-spritesheet": "^2.3.9",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"react-wavify": "^1.3.0",
"speak-tts": "^2.0.8"
},
"scripts": {
"start": "rescripts start",
"build": "rescripts build",
"test": "rescripts test",
"eject": "react-scripts eject",
"electron-start": "electron .",
"electron-dev": "concurrently \"cross-env BROWSER=none react-scripts start\" \"wait-on http://localhost:3000 && electron .\"",
"postinstall": "electron-builder install-app-deps",
"preelectron-pack": "yarn build",
"electron-pack": "electron-builder -mw"
},
"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": {
"@rescripts/cli": "^0.0.14",
"@rescripts/rescript-env": "^0.0.12",
"concurrently": "^5.2.0",
"electron": "^15.5.5",
"electron-builder": "^22.7.0",
"typescript": "^3.9.5",
"wait-on": "^5.0.1"
},
"author": {
"name": "UTD Hackathon Dream Team",
"email": "hackathon.dream.team.utd@gmail.com",
"url": "http://www.saloni-shivdasani.codes/"
},
"build": {
"appId": "com.quack-the-code.app",
"productName": "Quack The Code",
"copyright": "Copyright © 2020 ${author}",
"mac": {
"icon": "./src/duck.icns",
"category": "public.app-category.utilities"
},
"win": {
"icon": "./src/duck0.png"
},
"directories": {
"buildResources": "src"
}
}
}