-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.66 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
{
"name": "neos-commandbar",
"packageManager": "[email protected]",
"license": "MIT",
"private": true,
"engines": {
"node": ">=16"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@neos-commandbar/dev-server": "workspace:*",
"@neos-commandbar/module-plugin": "workspace:*",
"@neos-commandbar/ui-plugin": "workspace:*"
},
"devDependencies": {
"@testing-library/preact": "^3.2.3",
"@types/react": "^16.14.35",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.4",
"testcafe": "^2.3.1",
"typescript": "^4.9.5",
"typescript-plugin-css-modules": "^4.1.1"
},
"scripts": {
"build": "yarn workspaces foreach -pt run build",
"watch": "yarn watch:ui && yarn watch:module",
"build:ui": "yarn workspace @neos-commandbar/ui-plugin build",
"watch:ui": "yarn workspace @neos-commandbar/ui-plugin watch",
"build:module": "yarn workspace @neos-commandbar/module-plugin build",
"watch:module": "yarn workspace @neos-commandbar/module-plugin watch",
"dev": "yarn workspace @neos-commandbar/dev-server start",
"test": "testcafe",
"test:github-actions": "xvfb-run --server-args=\"-screen 0 1280x720x24\" yarn testcafe chrome",
"lint": "tsc --noemit && eslint 'packages/*/src/**/*.{js,jsx,ts,tsx}'",
"analyze:module": "yarn build:module --reporter @parcel/reporter-bundle-analyzer"
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"tabWidth": 4
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"not dead"
],
"flat": true,
"resolutions": {
"@neos-project/build-essentials@^8.2.6": "patch:@neos-project/build-essentials@npm%3A8.2.6#./.yarn/patches/@neos-project-build-essentials-npm-8.2.6-787ecaf75f.patch",
"@leeoniya/ufuzzy@^1.0.3": "patch:@leeoniya/ufuzzy@patch%3A@leeoniya/ufuzzy@npm%253A1.0.3%23./.yarn/patches/@leeoniya-ufuzzy-npm-1.0.3-475d16540b.patch%3A%3Aversion=1.0.3&hash=b7c8eb&locator=neos-commandbar%2540workspace%253A.#./.yarn/patches/@leeoniya-ufuzzy-patch-e276b84bbf.patch",
"@neos-project/neos-ui-extensibility@^8.2.6": "patch:@neos-project/neos-ui-extensibility@npm%3A8.2.6#./.yarn/patches/@neos-project-neos-ui-extensibility-npm-8.2.6-aa62204758.patch"
},
"alias": {
"react": "preact/compat",
"react-dom/test-utils": "preact/test-utils",
"react-dom": "preact/compat",
"react/jsx-runtime": "preact/jsx-runtime",
"preact/jsx-dev-runtime": "preact/jsx-runtime"
}
}