-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.51 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
{
"name": "bookmarks-to-obsidian",
"version": "1.0.0",
"description": "A small project to sync Twitter bookmarks with an Obsidian vault.",
"main": "./dist/index.js",
"module": "./dist/index.modern.js",
"scripts": {
"clean": "rimraf dist/*",
"copy-assets": "ts-node tools/copyAssets",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"tsc": "tsc",
"build": "npm-run-all clean lint tsc copy-assets",
"dev:start": "npm-run-all build start",
"dev": "nodemon --watch src -e ts,ejs --exec npm run dev:start",
"start": "node .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"twitter",
"bookmarks",
"obsidian",
"javascript"
],
"author": "0xrusowsky",
"license": "MIT",
"dependencies": {
"@types/ejs": "^3.1.1",
"@types/wicg-file-system-access": "^2020.9.5",
"browser-fs-access": "^0.31.2",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-session": "^1.17.3",
"fs": "^0.0.1-security",
"fs-access": "^2.0.0",
"twitter-api-v2": "^1.13.0"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.15",
"@types/express-session": "^1.17.5",
"@types/fs-extra": "^9.0.13",
"@types/node": "^16.18.11",
"@types/shelljs": "^0.8.11",
"fs-extra": "^10.1.0",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.9.4"
}
}