-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 2.03 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
{
"name": "read-this-next",
"version": "0.1.0",
"author": "Jackson Reeves",
"private": true,
"scripts": {
"build": "next build",
"check": "npm run build && npm run test && npm run lint && npm run lint-strict && npm run format && echo '\nAll checks passed!'",
"clear": "rm -rf .next && rm -rf .swc && rm -rf coverage && rm -rf playwright-report && rm -rf test-results",
"dev": "next dev",
"format": "prettier . --write",
"generators-setup": "chmod +x generate/*",
"lint": "next lint --fix",
"lint-staged": "lint-staged",
"lint-strict": "next lint --max-warnings=0",
"prepare": "husky",
"relock": "rm -rf node_modules && rm package-lock.json && npm i",
"reset": "npm run clear && npm run relock",
"test": "npm run test:unit && npm run test:e2e",
"test:e2e": "npx playwright test",
"test:unit": "jest --coverage"
},
"dependencies": {
"next": "14.1.0",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@playwright/test": "^1.41.2",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"autoprefixer": "^10.0.1",
"dotenv": "^16.4.4",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-check-file": "^2.6.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"postcss": "^8",
"prettier": "^3.2.5",
"tailwindcss": "^3.3.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}