-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.9 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "warp-grid-editor",
"version": "1.1.0",
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c",
"description": "Editor/demo for warp-grid",
"homepage": "https://warp-grid.undistraction.com",
"repository": {
"type": "git",
"url": "git+https://github.com/undistraction/warp-grid-editor.git"
},
"bugs": {
"url": "https://github.com/undistraction/warp-grid-editor/issues"
},
"type": "module",
"scripts": {
"prepare": "husky",
"test-unit": "vitest run",
"test-unit-watch": "vitest",
"test-unit-coverage": "vitest --coverage",
"test-unit-snapshot": "vitest run -u",
"test-e2e": "ACTIVE_ENV=test playwright test",
"test-e2e-ui": "ACTIVE_ENV=test playwright test --ui",
"test-e2e-snapshot": "ACTIVE_ENV=test playwright test --update-snapshots",
"lint": "pnpm run lint-prettier && pnpm run lint-eslint",
"lint-prettier": "prettier . --write",
"lint-eslint": "eslint . --fix",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"link": "pnpm link ../warp-grid",
"unlink": "pnpm unlink ../warp-grid",
"tsc": "tsc",
"audit-npm-packages": "audit-ci --config ./audit-ci.jsonc --skip-dev"
},
"keywords": [
"coons patch",
"geometry",
"math",
"surface",
"grid"
],
"author": "Pedr Browne",
"license": "MIT",
"devDependencies": {
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.6.0",
"@playwright/test": "^1.49.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/release-notes-generator": "^14.0.1",
"@testing-library/react": "^16.0.0",
"@types/bezier-js": "^4.1.3",
"@types/ramda": "^0.30.2",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/eslint-plugin": "^1.1.14",
"audit-ci": "^7.1.0",
"autoprefixer": "^10.4.19",
"commitlint": "^19.3.0",
"dotenv": "^16.4.5",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-playwright": "^2.0.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.8.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"lint-staged": "^15.2.7",
"nodemon": "^3.1.4",
"postcss": "^8.4.39",
"prettier": "3.4.2",
"prettier-plugin-ejs": "^1.0.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.16",
"typescript": "^5.5.4",
"typescript-eslint": "^8.18.0",
"vite": "^5.3.3",
"vitest": "^2.0.5"
},
"dependencies": {
"@heroicons/react": "^2.1.5",
"@react-hook/window-size": "^3.1.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.15",
"@types/dasherize": "^2.0.3",
"bezier-easing": "^2.1.0",
"bezier-js": "^6.1.4",
"classnames": "^2.5.1",
"dasherize": "^2.0.0",
"fast-memoize": "^2.5.2",
"prop-types": "^15.8.1",
"ramda": "^0.30.1",
"ramda-adjunct": "^5.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-draggable": "^4.4.6",
"react-syntax-highlighter": "^15.5.0",
"react-tooltip": "^5.28.0",
"react-use-dimensions": "^1.2.1",
"tailwind-merge": "^2.5.0",
"use-debounce": "^10.0.1",
"uuid": "^11.0.0",
"warp-grid": "4.0.2",
"zustand": "^5.0.0"
},
"pnpm": {
"overrides": {
"cross-spawn": "^7.0.5",
"micromatch": "^4.0.8"
}
}
}