-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.73 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
58
59
60
61
62
63
64
65
{
"name": "jameswatt.io",
"description": "The personal portfolio for London based software engineer James Watt",
"version": "0.1.0",
"author": "James Watt",
"homepage": "https://jameswatt.io",
"repository": {
"type": "git",
"url": "https://github.com/Hiccup246/jameswatt"
},
"license": "MIT",
"packageManager": "pnpm@7.25.1",
"keywords": [
"nextjs",
"tailwind",
"jest",
"playwright",
"typescript"
],
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --check .",
"format": "next lint --fix",
"fix": "prettier --write .",
"lint-config": "eslint --print-config .eslintrc",
"type-check": "tsc",
"test:unit": "jest",
"test:e2e": "playwright test",
"codegen": "playwright codegen",
"prepare": "husky install"
},
"dependencies": {
"@testing-library/dom": "^8.20.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "18.11.9",
"@types/testing-library__jest-dom": "^5.14.9",
"eslint": "8.28.0",
"eslint-config-next": "14.2.15",
"next": "14.2.15",
"react": "18.3.1",
"react-dom": "18.3.1",
"sharp": "^0.31.3",
"typescript": "4.9.3"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@playwright/test": "^1.48.0",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"autoprefixer": "^10.4.20",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.47",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"tailwindcss": "^3.4.14"
}
}