-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.02 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.02 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "mlaursen.com",
"type": "module",
"homepage": "https://mlaursen.com",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"prepare": "husky",
"format": "prettier --write .",
"check-format": "prettier --check .",
"typecheck": "tsgo --noEmit",
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest app",
"lint": "eslint \"**/*.{ts,tsx,js,jsx}\"",
"lint-fix": "pnpm lint --fix",
"dev": "next dev",
"build": "next build",
"start": "next start",
"start-static": "serve -p 3000 ./out"
},
"repository": "git@github.com:mlaursen/mlaursen.com.git",
"author": "Mikkel Laursen <mlaursen03@gmail.com>",
"dependencies": {
"@react-md/core": "7.0.3",
"next": "^16.2.6",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"devDependencies": {
"@jest/globals": "^30.3.0",
"@jest/types": "^30.3.0",
"@mlaursen/eslint-config": "^12.0.8",
"@next/eslint-plugin-next": "^16.2.4",
"@playwright/test": "^1.59.1",
"@swc/core": "^1.15.30",
"@swc/jest": "^0.2.39",
"@swc/types": "^0.1.26",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "beta",
"eslint": "^9.39.3",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jest-watch-typeahead": "^3.0.1",
"lint-staged": "^16.4.0",
"playwright": "^1.59.1",
"prettier": "^3.8.3",
"sass-embedded": "^1.99.0",
"serve": "^14.2.6",
"typescript": "npm:@typescript/typescript6@^6.0.0"
},
"lint-staged": {
"**/*.{ts,tsx,scss,js,jsx,md,yml,json}": [
"prettier --write"
]
},
"engines": {
"node": "24.15.0",
"pnpm": "10.33.2"
},
"engineStrict": true,
"volta": {
"node": "24.15.0",
"pnpm": "10.33.2"
}
}