-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.84 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.84 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
73
74
75
76
77
78
{
"name": "jezvejs-react-monorepo",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "JavaScript utility and components library",
"module": "index.js",
"main": "index.js",
"scripts": {
"lint-src": "npx eslint --quiet ./packages/ ./scripts/ ./storybook/ ./tests/ ",
"lint-style": "npx stylelint packages/**/*.scss storybook/**/*.scss",
"lint": "npm-run-all lint-src lint-style lint-ts",
"lint-ts": "npx tsc -b ./packages/react/ ./storybook/ ./tests/ ./packages/react-test/ --noEmit",
"prestart": "npm install",
"pretest": "npx playwright install",
"test": "npx playwright test",
"start": "npm run dev -w jezvejs-react-storybook",
"build": "npm run build -w @jezvejs/react",
"build-storybook": "npm run build -w jezvejs-react-storybook",
"build-all": "npm-run-all build build-storybook",
"all": "npm-run-all lint build-all test",
"deploy": "node ./scripts/deploy.js",
"commit-version": "node ./scripts/commit-version.js",
"release": "node ./scripts/release.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jezvejs/react.git"
},
"author": "Ilya Makarov",
"license": "ISC",
"bugs": {
"url": "https://github.com/jezvejs/react/issues"
},
"homepage": "https://github.com/jezvejs/react#readme",
"workspaces": [
"packages/*",
"storybook",
"tests"
],
"devDependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.20.0",
"@tsconfig/vite-react": "^3.4.0",
"@types/node": "^20.19.26",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"browserslist": "^4.28.1",
"commonjs-variables-for-esmodules": "^1.1.0",
"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-import-x": "^4.16.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.24",
"eslint-plugin-storybook": "^0.11.6",
"globals": "^15.15.0",
"jiti": "^2.6.1",
"npm-run-all": "^4.1.5",
"sass": "^1.96.0",
"shelljs": "^0.9.2",
"ssh2-sftp-client": "^10.0.3",
"stylelint": "^16.26.1",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^13.1.0",
"typescript": "5.8.3",
"typescript-eslint": "^8.49.0"
},
"dependencies": {
"@jezvejs/release-tools": "^1.0.3",
"dotenv": "^17.2.3"
}
}