-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.12 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.12 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": "neos-media-ui",
"version": "1.0.0",
"license": "GNU GPLv3",
"private": true,
"engines": {
"node": "22"
},
"scripts": {
"lint": "tsc --noemit && eslint 'packages/**/*.{js,jsx,ts,tsx}'",
"test:e2e": "testcafe",
"test:unit": "node --import tsx --test 'packages/**/*.spec.ts'",
"dev": "yarn workspace @media-ui/dev-server run dev",
"dev:test": "yarn workspace @media-ui/dev-server run test",
"watch": "concurrently -k \"yarn watch:module\" \"yarn watch:plugin\"",
"watch:module": "yarn workspace @media-ui/media-module run watch",
"watch:plugin": "yarn workspace @media-ui/neos-ui-plugin run watch",
"build": "yarn build:module && yarn build:plugin",
"build:module": "yarn workspace @media-ui/media-module run build",
"build:plugin": "yarn workspace @media-ui/neos-ui-plugin run build"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@media-ui/dev-server": "workspace:*",
"@media-ui/media-module": "workspace:*",
"@media-ui/neos-ui-plugin": "workspace:*"
},
"devDependencies": {
"@eslint/compat": "^2.0.5",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"concurrently": "^8.1.0",
"esbuild": "~0.27.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testcafe": "^0.2.1",
"globals": "^17.5.0",
"prettier": "^2.8.8",
"testcafe": "^3.7.4",
"ts-loader": "^8.4.0",
"ts-node": "^10.9.1",
"tsx": "^4.21.0",
"typescript": "^4.9.5",
"typescript-eslint": "^8.58.2",
"typescript-plugin-css-modules": "^5.0.1"
},
"packageManager": "yarn@4.9.1",
"browserslist": [
"> 0.5%",
"last 2 versions",
"not dead",
"supports async-functions"
],
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"tabWidth": 4
},
"resolutions": {
"ts-node": "^10.9.1",
"ts-loader": "^8.4.0",
"typescript": "^4.9.5"
}
}