-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.01 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
{
"name": "paper-editor",
"version": "3.1.6",
"private": true,
"author": {
"name": "Gernot Vormayr",
"email": "[email protected]"
},
"description": "Editor for NTARC dataset files.",
"bugs": "https://github.com/CN-TU/nta-meta-analysis-editor/issues",
"license": "GPL-3.0+",
"homepage": "./",
"main": "electron-compiled.js",
"repository": {
"type": "git",
"url": "https://github.com/CN-TU/nta-meta-analysis-editor"
},
"build": {
"appId": "com.cn.paper-editor",
"win": {
"target": [
"nsis",
"portable"
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"mac": {
"target": "zip"
},
"files": [
"build/*",
"spec/*",
"electron-compiled.js",
"!node_modules/**"
],
"extends": null
},
"dependencies": {
"ajv": "^6.5.5",
"download-tarball": "^1.1.0",
"rc-tooltip": "^3.7.3"
},
"devDependencies": {
"@heroku/foreman": "github:heroku/node-foreman",
"bootstrap": "^4.1.3",
"brace": "^0.11.1",
"csv-parse": "^2.5.0",
"electron": "^3.0.10",
"electron-builder": "^20.36.2",
"pegjs": "^0.10.0",
"react": "^16.6.3",
"react-dnd": "^2.6.0",
"react-dnd-html5-backend": "^2.6.0",
"react-dom": "^16.6.3",
"react-feather": "^1.1.4",
"react-scripts": "1.1.4",
"rjson-editor": "^0.10.5"
},
"scripts": {
"start": "react-scripts start",
"electron": "electron .",
"electron_debug": "electron main_debug.js",
"dev": "nf start",
"dist": "build --mac --win --linux --x64",
"build": "npm run pegjs && node scripts/build-worker.js && react-scripts build && node scripts/cleanup.js && npm run build_main",
"build_main": "webpack --config scripts/build-main.js",
"test": "react-scripts test --env=jsdom",
"update": "node scripts/update_files",
"feature_life": "node src/life.js",
"feature_test": "node src/test.js",
"pegjs": "pegjs src/feature.pegjs && pegjs src/specification.pegjs"
}
}