-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.52 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.52 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
46
47
48
49
50
51
52
53
{
"name": "stock-exchange-app",
"version": "0.54.0",
"private": true,
"scripts": {
"dev": "bun --bun next dev",
"build": "bun --bun next build",
"start": "bun --bun next start",
"lint": "bun --bun next lint",
"format": "prettier --write .",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:market-data": "bun run scripts/test-market-data.ts",
"setup:appwrite:ai-keys": "bun run scripts/setup-ai-keys-appwrite.ts",
"analyze": "ANALYZE=true bun run build",
"lighthouse": "lhci autorun"
},
"dependencies": {
"appwrite": "^21.5.0",
"lightweight-charts": "^5.1.0",
"next": "^15.1.6",
"node-appwrite": "^14.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-github-btn": "^1.4.0",
"swr": "^2.2.5"
},
"devDependencies": {
"@lhci/cli": "^0.15.1",
"@next/bundle-analyzer": "^16.2.1",
"@playwright/test": "^1.58.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.1.4",
"eslint": "^9",
"eslint-config-next": "^15.1.6",
"fast-check": "^4.6.0",
"jsdom": "^28.1.0",
"postcss": "^8",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"vitest": "^4.0.18",
"vitest-axe": "^0.1.0"
}
}