-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.5 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.5 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
{
"name": "tch-filector",
"productName": "FileCtor",
"version": "1.4.2",
"author": "Tomas Chyly <chyly@tomas-chyly.com> (https://tomas-chyly.com/en/)",
"license": "GPL v3",
"description": "File inspector with interactive javascript console.",
"private": true,
"engines": {
"node": ">=8.0.0"
},
"homepage": "./",
"main": "src/main.js",
"scripts": {
"debug": "cross-env FILECTOR_DEV=true yarn react-scripts start",
"start": "cross-env FILECTOR_DEV=true node ./scripts/start.js",
"build": "react-scripts build"
},
"devDependencies": {
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"electron": "^9.2.0",
"electron-rebuild": "^1.11.0",
"find-free-port": "^2.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.1",
"react-transition-group": "^4.4.1",
"react-virtualized-auto-sizer": "^1.0.2",
"react-window": "^1.8.5",
"shelljs": "^0.8.4",
"wait-on": "^5.0.1"
},
"dependencies": {
"axios": "^0.19.2",
"codemirror": "^5.56.0",
"email-validator": "^2.0.4",
"extend": "^3.0.2",
"fs-extra": "^9.0.1",
"nedb": "^1.8.0",
"open": "^7.0.4",
"pouchdb-adapter-node-websql": "^7.0.0",
"rxdb": "^9.1.0",
"rxjs": "^6.5.5",
"sanitize-html": "^1.26.0",
"systeminformation": "^4.26.9",
"tch-database": "^0.5.1",
"tinify": "^1.6.0-beta.2",
"uuid": "^8.1.0",
"write-file-atomic": "^3.0.3"
},
"browserslist": {
"production": [
"last 1 chrome version"
],
"development": [
"last 1 chrome version"
]
}
}