-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.17 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
{
"name": "lattice-grid",
"version": "0.2.1",
"private": true,
"type": "commonjs",
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@mantine/core": "^7.11.2",
"@mantine/hooks": "^7.11.2",
"@mantine/notifications": "^7.11.2",
"@total-typescript/ts-reset": "^0.5.1",
"@vitejs/plugin-react": "^4.3.1",
"clsx": "^2.1.1",
"js-base64": "^3.7.7",
"node-inspect-extracted": "^3.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"valtio": "^1.13.2",
"vite": "^5.3.5",
"vite-plugin-svgr": "^4.2.0",
"wouter": "^3.3.1"
},
"devDependencies": {
"@playwright/test": "^1.45.3",
"@types/lodash": "^4.17.7",
"@types/node": "^20.14.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"depcheck": "^1.4.7",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.9",
"eslint-plugin-sonarjs": "^1.0.4",
"eslint-plugin-testing-library": "^6.2.2",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-valtio": "^0.6.4",
"eslint-plugin-vitest": "^0.4.1",
"fast-check": "^3.20.0",
"jimp": "^0.22.12",
"jsdom": "^24.1.1",
"lodash": "^4.17.21",
"pre-commit": "^1.2.2",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"typescript": "^5.5.4",
"vitest": "^1.6.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "vite",
"build": "vite build",
"checkdeps": "pnpm outdated; depcheck --ignores 'pre-commit,prettier-plugin-organize-imports'",
"precommit": "pnpm typecheck; pnpm test:once; pnpm lint",
"precommit:keep-exit-codes": "E=0; pnpm typecheck || E=$?; pnpm test:once || E=$?; pnpm lint || E=$?; exit $E",
"test": "vitest watch",
"test:once": "vitest run --changed",
"e2e": "playwright test",
"e2e:report": "playwright show-report",
"lint": "pnpm lint:prettier --check . && pnpm lint:eslint .",
"lint:fix": "pnpm lint:prettier --write . && pnpm lint:eslint --fix .",
"lint:prettier": "prettier --cache --ignore-path .gitignore --ignore-path .prettierignore",
"lint:eslint": "eslint --quiet --cache --ignore-path .gitignore",
"typecheck": "tsc --noEmit"
},
"pre-commit": [
"precommit:keep-exit-codes"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}