-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
100 lines (100 loc) · 2.85 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": "notion2anki-server",
"description": "Go from Notion togglelists to Anki Cards easily!",
"keywords": [
"notion",
"anki",
"notion2anki"
],
"author": "Alexander Alemayhu",
"version": "1.2.1",
"engines": {
"node": ">=12.0.0"
},
"release": {
"branches": [
"main"
]
},
"main": "main.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"start": "npm run dev",
"build": "tsc -p .",
"dev": "LOCAL_DEV=true nodemon --watch '**/*.ts' --exec \"ts-node\" src/server.ts",
"lint": "eslint '**/*.ts' '**/*.tsx'",
"lint:fix": "eslint --fix '**/*.ts' '**/*.tsx'",
"purge-js": "rm `find . -name '*.js'|grep -v node_modules`",
"test:mock": "FORCE_BUILD=true ts-node lib/notion/_mock/build-mock-data.tsx"
},
"license": "MIT",
"dependencies": {
"@2anki/csv-to-apkg": "^1.4.4",
"@google-cloud/vertexai": "^1.9.0",
"@notionhq/client": "^2.2.13",
"@sendgrid/mail": "^8.1.3",
"aws-sdk": "^2.1502.0",
"axios": "^1.6.1",
"bcryptjs": "^2.4.3",
"cheerio": "^1.0.0-rc.12",
"cookie-parser": "^1.4.6",
"crypto-js": "^4.2.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fflate": "^0.8.0",
"find-remove": "^4.1.0",
"get-notion-object-title": "^0.2.0",
"html-to-text": "^9.0.4",
"jsonwebtoken": "^9.0.0",
"knex": "^3.1.0",
"metascraper": "^5.34.7",
"metascraper-description": "^5.39.0",
"metascraper-image": "^5.34.7",
"metascraper-logo-favicon": "^5.42.0",
"metascraper-title": "^5.36.0",
"metascraper-url": "^5.37.1",
"morgan": "^1.10.0",
"multer": "^1.4.4-lts.1",
"pg": "^8.11.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"showdown": "^2.1.0",
"stripe": "^16.8.0"
},
"devDependencies": {
"@types/base-64": "^1.0.0",
"@types/bcryptjs": "^2.4.6",
"@types/cheerio": "^0.22.31",
"@types/cookie-parser": "^1.4.6",
"@types/crypto-js": "^4.2.1",
"@types/dotenv": "^8.2.0",
"@types/find-remove": "^2.0.1",
"@types/html-to-text": "^9.0.0",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.5",
"@types/multer-s3": "^3.0.3",
"@types/node": "^22.0.0",
"@types/node-fetch": "^2.6.4",
"@types/react": "^18.2.43",
"@types/react-dom": "18.3.0",
"@types/showdown": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.53.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.1",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}