-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.49 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.49 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
{
"name": "@pr/source",
"version": "1.0.0",
"description": "Source code for the Practical React course @ https://www.bouvet.no/kurs/kategorier/utvikling-for-web-og-mobil/workshop-praktisk-react-med-typescript",
"main": "index.js",
"scripts": {
"init": "pnpm i --frozen-lockfile",
"update:npm": "npm-check-updates --interactive --format group -ws",
"update:nx1": "nx migrate latest",
"update:nx2": "nx migrate --run-migrations",
"verify:affected": "nx affected -t typecheck,lint,test,build",
"verify": "nx run-many -t typecheck,lint,test,build"
},
"keywords": [],
"author": "Thomas Haugland Rudfoss",
"private": true,
"license": "MIT",
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.12.1",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@dotenvx/dotenvx": "^1.44.2",
"@nestjs/cli": "^11.0.7",
"@nx/devkit": "21.1.3",
"@swc-node/register": "^1.10.10",
"@swc/core": "^1.12.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.0.0",
"@types/react": "^19.1.7",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.5.2",
"jsdom": "^26.1.0",
"npm-check-updates": "^18.0.1",
"nx": "21.1.3",
"tsx": "^4.20.0",
"type-fest": "^4.41.0",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.2.3"
},
"dependencies": {
"date-fns": "^4.1.0",
"modern-normalize": "^3.0.1",
"nanoid": "^5.1.5",
"react": "^19.1.0",
"react-dom": "^19.1.0"
}
}