-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.58 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
{
"name": "@hyperwell/notebook",
"version": "0.1.0",
"author": "Jan Kaßel <jan@kassel.works>",
"description": "A P2P system that leverages collaboration, local-first principles, and more on W3C Web Annotations",
"main": "app/background.js",
"private": true,
"bin": {
"notebook-cli": "./bin/cli.js"
},
"scripts": {
"dev": "nextron",
"build": "nextron build",
"postinstall": "exit 0; electron-builder install-app-deps",
"test": "echo 'No tests specified.'; exit 1"
},
"license": "MIT",
"dependencies": {
"clipboardy": "^2.3.0",
"debug": "^4.1.1",
"electron-better-ipc": "^0.8.0",
"electron-serve": "^0.4.1",
"electron-store": "^5.1.1",
"fuzzy": "^0.1.3",
"hypermerge": "github:automerge/hypermerge#63182f",
"hyperswarm": "^2.9.0",
"inquirer": "^7.1.0",
"inquirer-autocomplete-prompt": "^1.0.2",
"normalize.css": "^8.0.1",
"typeface-ibm-plex-sans": "0.0.75",
"uuid": "^7.0.2"
},
"devDependencies": {
"electron": "^8.2.0",
"electron-builder": "^22.4.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.10",
"next": "^9.3.2",
"next-fonts": "^1.0.3",
"nextron": "^5.14.5",
"prettier": "^1.19.1",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"engines": {
"node": ">=12.4.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write"
]
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"bracketSpacing": false
}
}