forked from neos/neos-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.61 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
{
"description": "Root package + shared dev dependencies for @neos-project packages, managed by yarn",
"repository": "neos/neos-ui",
"bugs": "https://github.com/neos/neos-ui/issues",
"homepage": "https://github.com/neos/neos-ui/blob/master/README.md",
"license": "GNU GPLv3",
"private": true,
"resolutions": {
"moment": "^2.20.1",
"vfile-message": "^2.0.2",
"isemail@3.2.0": "patch:isemail@npm:3.2.0#./patches/isemail-npm-3.2.0-browserified.patch",
"react-codemirror2@7.2.1": "patch:react-codemirror2@npm:7.2.1#./patches/react-codemirror2-npm-7.2.1-browserified.patch"
},
"scripts": {
"lint": "tsc --noemit && stylelint 'packages/*/src/**/*.css' && yarn eslint 'packages/*/src/**/*.{js,jsx,ts,tsx}'",
"test": "NODE_ENV=test jest --testMatch '**/packages/*/src/**/*.spec.{js,jsx,ts,tsx}'",
"test-watch": "yarn test --watch",
"test-update-snapshots": "yarn test -u"
},
"engines": {
"node": "~20"
},
"devDependencies": {
"@neos-project/eslint-config-neos": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"editorconfig-checker": "^4.0.2",
"esbuild": "~0.17.0",
"eslint": "^8.27.0",
"eslint-plugin-jest": "^27.1.5",
"jest": "^27.0.0",
"lightningcss": "^1.18.0",
"rimraf": "^2.5.4",
"stylelint": "^13.7.2",
"testcafe": "^3.6.2",
"testcafe-browser-provider-saucelabs": "^3.0.0",
"testcafe-react-selectors": "^5.0.3",
"typescript": "^4.6.4"
},
"workspaces": [
"packages/*"
],
"jest": {
"preset": "@neos-project/jest-preset-neos-ui"
},
"packageManager": "yarn@3.2.0"
}