-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.92 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.92 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
{
"name": "@mmncit/dpatterna",
"version": "1.0.0",
"type": "module",
"description": "playground with design pattern examples",
"author": "mmncit",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/mmncit/dpatterna"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@sveltejs/vite-plugin-svelte": "^5.0.4",
"@types/crypto-js": "^4.2.2",
"@types/d3-scale": "^4.0.9",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.3",
"@types/node-fetch": "^2.6.13",
"@types/page": "^1.11.9",
"@types/ramda": "^0.31.1",
"@types/three": "0.183.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-svelte": "^3.15.0",
"jest": "^30.2.0",
"npm-check-updates": "^19.6.3",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.0",
"svelte-check": "^4.2.0",
"ts-jest": "^29.4.6",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^6.2.5"
},
"resolutions": {
"@types/babel__traverse": "7.0.6"
},
"homepage": "https://mmncit.github.io/dpatterna",
"scripts": {
"predeploy": "pnpm build",
"deploy": "gh-pages -d dist",
"test": "jest --coverage --config jest.config.cjs --silent",
"lint": "pnpm lint:types && pnpm lint:ci",
"lint:types": "pnpm tsc --noEmit -p .",
"lint:ci": "eslint . --ext .tsx,.ts",
"test:dev": "jest --config jest.config.cjs",
"build": "vite build",
"dev": "vite",
"start": "vite",
"preview": "vite preview",
"update-deps": "ncu -u && pnpm install"
},
"dependencies": {
"@types/d3": "^7.4.3",
"crypto-js": "^4.2.0",
"d3": "^7.9.0",
"d3-scale": "^4.0.2",
"gh-pages": "^6.3.0",
"page": "^1.11.6",
"ramda": "^0.32.0",
"rxjs": "^7.8.2",
"svelte": "^5.53.6",
"three": "0.183.2"
}
}