-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.4 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "website-me.com",
"description": "NextJS, Typescript, React, Tailwind CSS Personal Page",
"repository": {
"type": "git",
"url": "https://github.com/cwsites/me.com"
},
"version": "0.0.1",
"author": {
"name": "Matt H",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/cwsites/",
"organization": true
},
"keywords": [
"aws",
"nextjs",
"react",
"tailwindcss"
],
"engines": {
"node": ">= 22.11.0"
},
"license": "Apache-2.0",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "pnpm run lint && pnpm run test && next dev",
"build": "pnpm run lint && pnpm run test && NEXT_TURBOPACK_TRACING=1 next dev --turbo",
"start": "pnpm run build && pnpm serve out",
"lint": "pnpm eslint .",
"lint:fix": "pnpm eslint . --fix",
"test": "node --trace-deprecation ./node_modules/jest/bin/jest.js --config jest.config.ts --coverage",
"test:watch": "node --trace-deprecation ./node_modules/jest/bin/jest.js --config jest.config.ts --watch --coverage",
"type": "tsc --noEmit"
},
"dependencies": {
"jest-environment-jsdom": "^29.7.0",
"next": "^15.0.3",
"next-safe": "^3.5.0",
"react": "19.0.0-rc.1",
"react-dom": "19.0.0-rc.1",
"sharp": "^0.33.5"
},
"packageManager": "[email protected]+sha512.88c9c3864450350e65a33587ab801acf946d7c814ed1134da4a924f6df5a2120fd36b46aab68f7cd1d413149112d53c7db3a4136624cfd00ff1846a0c6cef48a",
"devDependencies": {
"@antfu/eslint-config": "^3.9.1",
"@next/eslint-plugin-next": "^15.0.3",
"@swc/core": "^1.9.2",
"@swc/jest": "^0.2.37",
"@tailwindcss/forms": "^0.5.9",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.15.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"postcss": "^8.4.49",
"serve": "^14.2.4",
"tailwindcss": "^3.4.15",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.3"
}
}