-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.65 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.65 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
{
"name": "ghostbook",
"version": "0.2.0",
"private": true,
"homepage": ".",
"dependencies": {
"follow-redirects": "^1.15.11",
"next": "^16.2.3",
"node-forge": "^1.3.3",
"nth-check": "^3.0.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"web-vitals": "^5.2.0"
},
"scripts": {
"build": "next build",
"clean": "rm -rf test-deploy build .next",
"dev": "next dev",
"export": "next build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"lint:types": "npm run type-check && npm run lint",
"start": "npm run test:github-pages",
"test:github-pages": "npm run build && rm -rf test-deploy && mkdir -p test-deploy/ghostbook && cp -r build/* test-deploy/ghostbook/ && echo 'Testing at http://localhost:3000/ghostbook/' && npx http-server test-deploy -p 3000",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@playwright/test": "^1.59.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.2",
"eslint-config-prettier": "^10.1.8",
"jsdom": "^29.0.1",
"prettier": "^3.8.1",
"typescript": "5.9.3",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.2"
}
}