-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.8 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
{
"name": "mlaursen.com",
"type": "module",
"homepage": "https://mlaursen.com",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"prepare": "husky",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,scss,md,yml,json}\"",
"typecheck": "tsc --noEmit",
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest app",
"lint": "eslint \"**/*.{ts,tsx,js,jsx}\"",
"dev": "next dev",
"build": "next build",
"start": "next start",
"start-static": "serve -p 3000 ./out"
},
"engines": {
"pnpm": ">=9.3.0",
"node": ">=20"
},
"engineStrict": true,
"repository": "git@github.com:mlaursen/mlaursen.com.git",
"author": "Mikkel Laursen <mlaursen03@gmail.com>",
"dependencies": {
"@react-md/core": "1.0.0-next.16",
"next": "^14.2.15",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@jest/types": "^29.6.3",
"@mlaursen/eslint-config": "^5.1.1",
"@playwright/test": "^1.48.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"eslint": "^9.12.0",
"husky": "^9.1.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"playwright": "^1.48.0",
"prettier": "^3.3.3",
"sass": "^1.79.5",
"serve": "^14.2.3",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"lint-staged": {
"**/*.{ts,tsx,scss,js,jsx,md,yml,json}": [
"prettier --write"
]
},
"volta": {
"node": "20.12.0",
"pnpm": "9.5.0"
}
}