-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.38 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.38 KB
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
{
"name": "ams-check",
"private": true,
"version": "0.1.0",
"packageManager": "pnpm@9.12.0",
"bin": {
"analyse": "dist/cli/index.js"
},
"scripts": {
"typecheck:node": "tsc -p tsconfig.json --noEmit",
"typecheck:web": "tsc -p src/web/tsconfig.app.json --noEmit && tsc -p src/web/tsconfig.node.json --noEmit",
"typecheck": "pnpm typecheck:node && pnpm typecheck:web",
"build:node": "tsc -p tsconfig.json",
"build:web": "vite build --config src/web/vite.config.ts",
"build": "pnpm build:node && pnpm build:web",
"start:api": "node dist/api/index.js",
"dev:api": "pnpm build:node && pnpm start:api",
"dev:web": "vite --config src/web/vite.config.ts",
"analyse": "pnpm build:node && node dist/cli/index.js"
},
"dependencies": {
"@extractus/article-extractor": "^8.0.20",
"@mozilla/readability": "^0.5.0",
"cheerio": "^1.2.0",
"commander": "^12.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"jsdom": "^26.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "^5.6.3",
"vite": "^5.4.11"
}
}