forked from xiaoiver/infinite-canvas-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.09 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
{
"private": true,
"description": "An infinite canvas tutorial",
"keywords": [
"infinite canvas",
"tutorial",
"webgl",
"webgpu"
],
"repository": {
"type": "git",
"url": "https://github.com/xiaoiver/infinite-canvas-tutorial"
},
"license": "MIT",
"author": {
"name": "xiaoiver",
"url": "https://github.com/xiaoiver"
},
"scripts": {
"clean": "rimraf dist",
"lint-staged": "lint-staged",
"prepare": "husky install",
"build": "pnpm -r run build",
"deploy": "npx wrangler pages deploy ./packages/site/docs/.vitepress/dist",
"cov": "jest --coverage",
"test:e2e": "npx playwright test",
"dev:e2e": "vite dev",
"test:ui": "npx playwright test -c playwright.config.ui.ts"
},
"devDependencies": {
"@antv/g-device-api": "^1.6.12",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "18.0.0",
"@loaders.gl/core": "^4.2.2",
"@loaders.gl/images": "^4.2.2",
"@playwright/test": "^1.46.0",
"@sand4rt/experimental-ct-web": "^1.46.0",
"@types/gl": "^6.0.2",
"@types/jest": "^26.0.24",
"@types/pixelmatch": "^5.2.4",
"@types/pngjs": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"case-police": "^0.5.14",
"eslint": "^7.32.0",
"eslint-plugin-jest": "24.3.6",
"get-pixels": "3.3.3",
"gl": "^6.0.2",
"husky": "^7.0.4",
"jest": "^29.0.0",
"jsdom": "^19.0.0",
"lint-staged": "^10.5.4",
"markdownlint-cli": "^0.32.2",
"npm-run-all": "^4.1.5",
"pixelmatch": "5.3.0",
"pngjs": "^6.0.0",
"prettier": "^2.8.8",
"rimraf": "^4.4.1",
"ts-jest": "^29.1.0",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vue-eslint-parser": "^9.4.2",
"xmlserializer": "^0.6.1"
},
"lint-staged": {
"*.{md,json}": [
"prettier --write"
],
"*.md": [
"markdownlint --fix",
"case-police --fix",
"prettier --write"
],
"*.{js,jsx,tsx,ts,vue}": [
"eslint --fix"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}