-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
72 lines (72 loc) · 2.48 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
{
"name": "neos-media-ui",
"version": "1.0.0",
"license": "GNU GPLv3",
"private": true,
"engines": {
"node": "16"
},
"scripts": {
"lint": "tsc --noemit && eslint 'Resources/Private/JavaScript/**/*.{js,jsx,ts,tsx}'",
"test": "testcafe",
"test:unit": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' TS_NODE_FILES=true mocha",
"dev": "yarn workspace @media-ui/dev-server run dev",
"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:no-cache": "yarn build:module --no-cache && yarn build:plugin --no-cache",
"build:module": "yarn workspace @media-ui/media-module run build",
"build:plugin": "yarn workspace @media-ui/neos-ui-plugin run build",
"test:github-actions": "xvfb-run --server-args=\"-screen 0 1280x720x24\" yarn testcafe firefox"
},
"workspaces": [
"Resources/Private/JavaScript/*"
],
"dependencies": {
"@media-ui/dev-server": "workspace:*",
"@media-ui/media-module": "workspace:*",
"@media-ui/neos-ui-plugin": "workspace:*"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"chai": "^4.3.7",
"concurrently": "^8.1.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testcafe": "^0.2.1",
"mocha": "^10.2.0",
"node-gyp": "^9.3.1",
"prettier": "^2.8.8",
"testcafe": "^3.6.0",
"testcafe-react-selectors": "^5.0.3",
"ts-loader": "^8.4.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"typescript-plugin-css-modules": "^5.0.1"
},
"packageManager": "[email protected]",
"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",
"@neos-project/neos-ui-extensibility-webpack-adapter@^8.3.0": "patch:@neos-project/neos-ui-extensibility-webpack-adapter@npm%3A8.3.0#./.yarn/patches/@neos-project-neos-ui-extensibility-webpack-adapter-npm-8.3.0-fcedc456c3.patch"
}
}