-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
100 lines (100 loc) · 2.91 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
{
"name": "styled-roam",
"version": "0.0.0-development",
"private": "true",
"description": "Roam Research ✍️ Writing with your lovely cards 🧩 and beautiful theme 🎨",
"main": "index.js",
"scripts": {
"dev": "parcel src/index.js --port 8080",
"build:styled": "parcel build src/index.js --out-dir public/js",
"dev:file": "parcel src/entrys/file.js --port 8080",
"build:file": "parcel build src/entrys/file.js --out-dir public",
"build:md": "marked README.md -o public/index.html && marked ROAM_FILES.md -o public/file.html",
"build": "npm run build:styled && npm run build:file && npm run build:md",
"prebuild": "rm -rf public",
"postbuild": "parcel build src/themes/*.less --out-dir public",
"deploy": "gh-pages -d public",
"release": "semantic-release"
},
"husky": {
"hooks": {
"pre-push": "echo 'npm run build && npm run deploy'"
}
},
"repository": {
"type": "git",
"url": "https://github.com/JimmyLv/styled-roam.git"
},
"keywords": [
"Roam Research",
"Roam",
"Note-Taking",
"React"
],
"author": "JimmyLv",
"license": "ISC",
"bugs": {
"url": "https://github.com/JimmyLv/styled-roam/issues"
},
"homepage": "https://github.com/JimmyLv/styled-roam#readme",
"browserslist": [
"since 2017-06"
],
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"husky": "^3.1.0",
"less": "^4.0.0",
"lint-staged": "^12.0.3",
"marked": "4.0.17",
"parcel-bundler": "^1.12.4",
"prettier": "^2.4.1",
"semantic-release": "^17.4.2",
"semantic-release-gitmoji": "1.4.5",
"simple-git-hooks": "^2.7.0"
},
"dependencies": {
"@blueprintjs/core": "^3.41.0",
"@blueprintjs/popover2": "^1.10.1",
"@octokit/core": "^3.4.0",
"@types/react": "^16.14.32 || 17 || 18",
"@uppy/core": "^1.17.0",
"@uppy/dashboard": "^1.18.0",
"@uppy/dropbox": "^1.4.26",
"@uppy/facebook": "^1.1.26",
"@uppy/google-drive": "^1.6.0",
"@uppy/image-editor": "^0.2.4",
"@uppy/instagram": "^1.4.26",
"@uppy/onedrive": "^1.1.26",
"@uppy/screen-capture": "^1.0.17",
"@uppy/tus": "^1.8.7",
"@uppy/utils": "^3.5.0",
"@uppy/webcam": "^1.8.8",
"@uppy/xhr-upload": "^1.7.2",
"dateformat": "^4.5.1",
"dayjs": "^1.9.8",
"dropbox": "^9.6.0",
"dropbox-dropins": "^1.0.4",
"filepond": "^4.27.0",
"gh-pages": "^3.1.0",
"hotkeys-js": "^3.8.1",
"htm": "^3.0.4",
"html2canvas": "^1.0.0-rc.7",
"mobile-device-detect": "^0.4.3",
"paste-image": "^0.0.3",
"react": "^16.8 || 17 || 18",
"react-dom": "^16.8 || 17 || 18",
"roam-client": "^1.49.3",
"rss-parser": "^3.12.0",
"styled-components": "^5.2.1",
"tippy.js": "^6.2.7",
"uppy": "^1.27.0",
"vhtml": "^2.2.0"
},
"lint-staged": {
"*.js,*.less": "prettier"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}