-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.49 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
{
"name": "fetch-twitter-bookmarks",
"author": "Samuel Sweet <[email protected]>",
"version": "0.0.0",
"description": "A utility to fetch your saved bookmarks from Twitter",
"license": "ISC",
"main": "src/main.ts",
"bin": "./bin/main.js",
"scripts": {
"start": "ts-node src/main.ts",
"debug": "node -r ts-node/register --inspect src/main.ts",
"test": "jest",
"test-with-coverage": "jest --coverage"
},
"keywords": [
"twitter",
"bookmarks",
"saved"
],
"dependencies": {
"app-root-path": "^3.0.0",
"lodash.uniqby": "^4.7.0",
"playwright": "^1.11.1",
"sequelize": "^6.6.2",
"sqlite3": "^5.0.2",
"superagent": "^6.1.0",
"tiny-typed-emitter": "^2.0.3",
"vorpal": "^1.12.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@jest/types": "^27.0.2",
"@tsconfig/node14": "^1.0.0",
"@types/app-root-path": "^1.2.4",
"@types/faker": "^5.5.6",
"@types/jest": "^24.0.15",
"@types/lodash.uniqby": "^4.7.6",
"@types/node": "^14",
"@types/superagent": "^4.1.11",
"@types/vorpal": "^1.12.1",
"dotenv": "^10.0.0",
"faker": "^5.5.3",
"jest": "^27.0.4",
"ts-jest": "^27.0.2",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.3.2"
},
"engines": {
"node": ">=14.x",
"npm": ">=7.x"
}
}