-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.14 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.14 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
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
{
"name": "personallog",
"version": "1.0.0",
"description": "SuperInstance personal logging app for everyday use",
"private": true,
"license": "MIT",
"author": "SuperInstance",
"homepage": "https://github.com/SuperInstance/PersonalLog#readme",
"repository": {
"type": "git",
"url": "https://github.com/SuperInstance/PersonalLog.git"
},
"bugs": {
"url": "https://github.com/SuperInstance/PersonalLog/issues"
},
"scripts": {
"dev": "next dev -p 3002",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"test": "npm run type-check",
"test:unit": "vitest run",
"test:watch": "vitest watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --config vitest.config.integration.ts",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:headed": "playwright test --headed",
"test:a11y": "playwright test tests/a11y/",
"test:perf": "playwright test tests/performance/",
"test:smoke": "playwright test --config=playwright-smoke.config.ts",
"test:all": "npm run test:unit && npm run test:integration && npm run test:e2e",
"clean": "npm run clean:wasm && rm -rf .next out coverage playwright-report",
"clean:wasm": "rm -rf native/rust/pkg native/rust/target",
"build:wasm": "cd native/rust && wasm-pack build --target web --weak-refs --out-dir pkg",
"build:wasm:release": "cd native/rust && wasm-pack build --release --target web --weak-refs --out-dir pkg",
"watch:wasm": "cd native/rust && cargo watch -s 'wasm-pack build --target web --weak-refs --out-dir pkg'",
"test:wasm": "cd native/rust && wasm-pack test --node",
"test:wasm:browser": "cd native/rust && wasm-pack test --firefox",
"verify:wasm": "node scripts/verify-wasm.js",
"verify:build": "node scripts/verify-build.js",
"verify:deployment": "node scripts/verify-deployment.js",
"generate-icons": "node scripts/generate-icons.js"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"idb": "8.0.3",
"lucide-react": "^0.562.0",
"next": "15.5.9",
"onnxruntime-web": "1.23.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.3.1",
"web-vitals": "5.1.0"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@testing-library/jest-dom": "^6.1.0",
"@testing-library/react": "^16.3.1",
"@types/js-yaml": "4.0.9",
"@types/node": "^25.0.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/semver": "7.7.1",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/ui": "^4.0.16",
"axe-core": "^4.8.0",
"axe-playwright": "^2.2.2",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"jsdom": "^23.0.0",
"sharp": "^0.34.5",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "4.0.16"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"keywords": [
"superinstance",
"personal",
"logging",
"journal",
"notes",
"productivity",
"nextjs"
]
}