-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.84 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "chatigami",
"version": "0.1.0",
"author": "FaultyFunctions",
"description": "An interactive dialogue editor for writers and programmers.",
"private": true,
"scripts": {
"start": "concurrently -k \"cross-env BROWSER=none npm run react-start\" \"wait-on http://localhost:3000 && electronmon .\"",
"build": "npm run clean:build && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"clean:dist": "rimraf dist/*",
"clean:build": "rimraf build/*",
"dist:win": "npm run clean:dist && npm run build && electron-builder -w -c.extraMetadata.main=build/electron.js",
"dist:mac": "npm run clean:dist && npm run build && electron-builder -m -c.extraMetadata.main=build/electron.js",
"dist:linux": "npm run clean:dist && npm run build && electron-builder -l -c.extraMetadata.main=build/electron.js",
"react-start": "react-scripts start",
"web": "react-scripts start",
"prettify": "npx prettier --write **/**"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.14",
"@chakra-ui/react": "^1.6.5",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@monaco-editor/react": "^4.2.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^26.0.24",
"@types/node": "^14.17.5",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"beautiful-react-hooks": "^0.35.0",
"cross-env": "^7.0.3",
"electron-is-dev": "^1.2.0",
"focus-visible": "^5.2.0",
"framer-motion": "^4.1.17",
"konva": "^8.1.1",
"pullstate": "^1.22.1",
"re-resizable": "^6.9.0",
"react": "^17.0.2",
"react-css-theme-switcher": "^0.3.0",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-konva": "^17.0.2-5",
"react-konva-utils": "^0.1.7",
"react-scripts": "^4.0.3",
"typescript": "^4.3.5",
"web-vitals": "^1.1.2"
},
"devDependencies": {
"concurrently": "^5.3.0",
"electron": "^11.4.10",
"electron-builder": "^22.11.7",
"electron-devtools-installer": "^3.2.0",
"electronmon": "^1.1.2",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"wait-on": "^5.3.0"
},
"main": "./public/electron.js",
"homepage": ".",
"build": {
"appId": "com.electron.chatigami",
"productName": "Chatigami",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "public"
},
"mac": {
"target": "dmg",
"category": "utilities",
"type": "development"
},
"win": {
"target": "nsis",
"icon": "./public/assets/images/icon512.png"
},
"linux": {
"target": "deb",
"category": "Development"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}