-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.24 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.24 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
70
71
72
{
"name": "matrix-constructor",
"private": true,
"version": "0.17.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/feesler/matrix-constructor.git"
},
"bugs": {
"url": "https://github.com/feesler/matrix-constructor/issues"
},
"homepage": "https://github.com/feesler/matrix-constructor#readme",
"author": "Ilya Makarov",
"license": "MIT",
"scripts": {
"prebuild": "tsc -b",
"build": "vite build",
"prestart": "npm install",
"start": "vite",
"lint-src": "npx eslint --quiet ./src/",
"lint-style": "npx stylelint src/**/*.*css",
"lint-ts": "npx tsc -b ./ --noEmit",
"lint": "npm-run-all lint-src lint-ts lint-style",
"preview": "vite preview",
"all": "npm-run-all lint build",
"deploy": "node ./scripts/deploy.js",
"commit-version": "node ./scripts/commit-version.js",
"release": "node ./scripts/release.js"
},
"dependencies": {
"@jezvejs/number": "^1.1.0",
"@jezvejs/react": "^1.16.3",
"classnames": "^2.5.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vite-plugin-svgr": "^4.5.0"
},
"devDependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/js": "^9.25.0",
"@jezvejs/react": "^1.16.3",
"@jezvejs/release-tools": "^1.0.3",
"@tsconfig/vite-react": "^6.3.6",
"@types/node": "^24.10.1",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"@vitejs/plugin-react-swc": "^3.11.0",
"dotenv": "^16.6.1",
"eslint": "^9.39.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-dom": "^1.53.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.24",
"eslint-plugin-react-x": "^1.53.1",
"globals": "^16.5.0",
"npm-run-all": "^4.1.5",
"sass-embedded": "^1.93.3",
"stylelint": "^16.26.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^16.0.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.47.0",
"vite": "^6.4.1",
"vite-plugin-svgr": "^4.5.0"
}
}