-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
115 lines (115 loc) · 3.36 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
{
"name": "visyn_scripts",
"description": "",
"version": "11.3.0",
"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": {
"@rsdoctor/cli": "^0.4.1",
"@rsdoctor/rspack-plugin": "^0.4.1",
"@rspack/cli": "~1.0.2",
"@rspack/core": "~1.0.2",
"@rspack/plugin-minify": "~0.7.5",
"@rspack/plugin-react-refresh": "~1.0.0",
"@swc/core": "~1.7.23",
"@swc/helpers": "~0.5.13",
"@swc/jest": "~0.2.36",
"@types/jest": "~27.4.1",
"@types/node": "^20.16.4",
"@typescript-eslint/eslint-plugin": "~7.18.0",
"@typescript-eslint/parser": "~7.18.0",
"dotenv": "^16.4.5",
"dotenv-expand": "^11.0.6",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-chai-friendly": "^1.0.1",
"eslint-plugin-cypress": "^3.5.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-compiler": "0.0.0-experimental-b8a7b48-20240830",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-playwright": "^2.0.1",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"html-loader": "~5.1.0",
"html-webpack-plugin": "^5.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-raw-loader": "~1.0.1",
"jest-resolve": "^27.4.2",
"postcss": "^8.4.41",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^8.1.1",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^10.0.2",
"prettier": "^3.3.3",
"react-dev-utils": "^12.0.1",
"react-refresh": "^0.14.2",
"resolve-url-loader": "^5.0.0",
"rimraf": "~6.0.1",
"rspack-plugin-dotenv": "^0.0.3",
"sass-embedded": "~1.78.0",
"sass-loader": "^16.0.1",
"shx": "~0.3.4",
"tailwindcss": "^3.4.10",
"ts-node": "^10.9.2",
"tslib": "~2.7.0",
"typescript": "~5.5.4",
"util": "^0.12.5",
"webpack": "^5.94.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/yargs": "^17.0.33",
"http-server": "^14.1.1",
"jest-dev-server": "^6.2.0"
},
"peerDependencies": {
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/|/bin/|/tests_fixtures/"
]
},
"packageManager": "[email protected]"
}