-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
122 lines (122 loc) · 3.49 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "kangaroo",
"version": "0.9.5",
"private": true,
"main": "electron/main.js",
"description": "Snippet manager",
"author": {
"name": "PROGGRAMIK Łukasz Szypliński",
"email": "[email protected]",
"url": "https://proggramik.com"
},
"scripts": {
"start": "concurrently \"cross-env BROWSER=none REACT_APP_MODE=electron craco start\" \"NODE_ENV=dev nodemon --exec ' wait-on http://localhost:3000 && electron .'\"",
"start:web": "craco start",
"build": "npm run build:web && npm run build:electron",
"build:web": "craco build",
"build:electron": "mkdir build/src && cp -r electron/. build/electron",
"package:mac": "PUBLIC_URL=./ npm run build && electron-builder --mac",
"lint": "tsc --noEmit && eslint 'src/*/**/*.{js,ts,tsx}' --quiet --fix",
"test": "craco test",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"dependencies": {
"@blueprintjs/core": "3.52.0",
"@blueprintjs/popover2": "^0.12.9",
"@octokit/rest": "18.0.6",
"@octokit/types": "5.5.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"ace-builds": "1.4.13",
"classnames": "2.3.1",
"electron-is-dev": "2.0.0",
"electron-store": "8.0.1",
"nedb": "1.8.0",
"node-sass": "5.0.0",
"path": "0.12.7",
"react": "17.0.2",
"react-ace": "9.5.0",
"react-dom": "17.0.2",
"react-redux": "7.2.6",
"react-transition-group": "4.4.2",
"redux": "4.1.2",
"redux-thunk": "2.4.1",
"source-map-explorer": "2.5.2",
"uuid": "8.3.2"
},
"devDependencies": {
"@craco/craco": "6.4.3",
"@jedmao/redux-mock-store": "3.0.5",
"@types/classnames": "2.3.1",
"@types/enzyme": "3.10.11",
"@types/jest": "26.0.20",
"@types/nedb": "1.8.11",
"@types/node": "14.18.3",
"@types/react": "17.0.38",
"@types/react-dom": "17.0.11",
"@types/react-redux": "7.1.22",
"@types/react-test-renderer": "17.0.1",
"@types/react-transition-group": "4.4.4",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.10.2",
"@typescript-eslint/parser": "5.10.2",
"concurrently": "7.0.0",
"cross-env": "7.0.3",
"electron": "17.0.0",
"electron-builder": "22.14.5",
"electron-devtools-installer": "3.2.0",
"enzyme": "3.11.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.28.0",
"nodemon": "2.0.15",
"prettier": "2.5.1",
"react-scripts": "5.0.0",
"react-test-renderer": "17.0.2",
"redux-devtools-extension": "2.13.9",
"ts-node": "10.4.0",
"typescript": "4.5.5",
"version-bump-prompt": "6.1.0",
"wait-on": "6.0.0"
},
"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"
]
},
"build": {
"appId": "com.proggramik.kangaroo",
"compression": "normal",
"productName": "Kangaroo",
"copyright": "Copyright © 2021 ${author}",
"extraMetadata": {
"main": "build/electron/main.js"
},
"directories": {
"buildResources": "build",
"output": "dist"
},
"mac": {
"icon": "logo.icns",
"type": "distribution",
"target": [
"pkg",
"dmg"
],
"extendInfo": {
"NSRequiresAquaSystemAppearance": false
},
"category": "public.app-category.developer-tools"
}
}
}