-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
120 lines (120 loc) · 3.54 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
{
"name": "visyn_scripts",
"description": "",
"version": "12.1.1-SNAPSHOT",
"author": {
"name": "datavisyn GmbH",
"email": "[email protected]",
"url": "https://www.datavisyn.io"
},
"license": "BSD-3-Clause",
"homepage": "https://www.datavisyn.io",
"bugs": {
"url": "https://github.com/datavisyn/visyn_scripts/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:datavisyn/visyn_scripts.git"
},
"files": [
"bin",
"config"
],
"bin": {
"visyn": "./bin/visyn_scripts.js",
"visyn_scripts": "./bin/visyn_scripts.js"
},
"scripts": {
"lint": "eslint bin/**/*.js config/**/*.js tests/**/*.js",
"lint:fix": "eslint --fix bin/**/*.js config/**/*.js tests/**/*.js",
"test": "jest -w 1",
"test:watch": "jest -w 1 --watch",
"build": "echo 'No build script defined'",
"dist": "npm run lint && npm run test"
},
"dependencies": {
"@kesills/eslint-config-airbnb-typescript": "^20.0.0",
"@rsbuild/core": "^1.2.0",
"@rsbuild/plugin-react": "^1.1.0",
"@rsbuild/plugin-sass": "^1.2.0",
"@rsdoctor/cli": "^0.4.13",
"@rsdoctor/rspack-plugin": "^0.4.13",
"@rspack/cli": "~1.2.0",
"@rspack/core": "~1.2.0",
"@rspack/plugin-minify": "~0.7.5",
"@rspack/plugin-react-refresh": "~1.0.1",
"@stylistic/eslint-plugin": "^2.13.0",
"@swc/core": "~1.10.9",
"@swc/helpers": "~0.5.15",
"@swc/jest": "~0.2.37",
"@types/jest": "~27.4.1",
"@types/node": "^20.17.14",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "~8.21.0",
"dotenv": "^16.4.7",
"dotenv-expand": "^12.0.1",
"dotenv-webpack": "^8.1.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-chai-friendly": "^1.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-playwright": "^2.1.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-compiler": "0.0.0-experimental-decd7b8-20250118",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-unused-imports": "^4.1.4",
"fs-extra": "^11.3.0",
"glob": "^11.0.1",
"html-loader": "~5.1.0",
"html-webpack-plugin": "^5.6.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-raw-loader": "~1.0.1",
"jest-resolve": "^27.5.1",
"postcss": "^8.5.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^8.1.1",
"postcss-normalize": "^13.0.1",
"postcss-preset-env": "^10.1.3",
"prettier": "^3.4.2",
"react-dev-utils": "^12.0.1",
"react-refresh": "^0.16.0",
"resolve-url-loader": "^5.0.0",
"rimraf": "~6.0.1",
"sass-embedded": "~1.83.4",
"sass-loader": "^16.0.4",
"shx": "~0.3.4",
"tailwindcss": "^3.4.17",
"ts-checker-rspack-plugin": "^1.1.1",
"ts-node": "^10.9.2",
"tslib": "~2.8.1",
"typescript": "~5.7.3",
"util": "^0.12.5",
"webpack": "^5.97.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/yargs": "^17.0.33",
"http-server": "^14.1.1",
"jest-dev-server": "^6.2.0",
"storybook": "^8.5.0",
"storybook-react-rsbuild": "^0.1.8"
},
"peerDependencies": {
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/|/bin/|/tests_fixtures/"
]
},
"packageManager": "[email protected]"
}