forked from dso-toolkit/dso-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.08 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
{
"name": "dso-toolkit-monorepo",
"private": true,
"workspaces": {
"packages": [
"angular-workspace",
"packages/*",
"storybook",
"website"
]
},
"scripts": {
"graph": "nx graph --watch=true",
"postinstall": "patch-package",
"format": "prettier --write .",
"danger-ci": "danger ci --failOnErrors",
"lint": "yarn lint:prettier && yarn lint:stylelint && yarn lint:eslint",
"lint:prettier": "prettier --check .",
"lint:stylelint": "stylelint 'packages/**/*.scss'",
"lint:eslint": "eslint --max-warnings=4 .",
"build": "nx run-many --target=build",
"build-www": "nx run-many --target=build-www",
"e2e": "yarn workspace dso-storybook e2e",
"clear-node-modules": "npx rimraf node_modules angular-workspace/node_modules angular-workspace/projects/component-library/node_modules packages/core/node_modules packages/dso-toolkit/node_modules packages/react/node_modules storybook/node_modules",
"website": "yarn workspace website start",
"start": "yarn node scripts/start.js"
},
"dependencies": {
"@infoprojects/eslint-config": "^1.1.0",
"@infoprojects/prettier-config": "^1.0.0",
"@stencil-community/eslint-plugin": "^0.7.0",
"@types/minimist": "^1.2.5",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"axe-core": "^4.8.2",
"concurrently": "^8.2.2",
"cpy-cli": "^5.0.0",
"danger": "^11.3.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-lit": "^1.10.1",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-react": "^7.33.2",
"minimist": "^1.2.8",
"nx": "17.1.3",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"stylelint": "^16.1.0",
"stylelint-config-recommended-scss": "^14.0.0",
"typescript": "<5.3.0",
"wait-on": "^7.2.0"
},
"prettier": "@infoprojects/prettier-config",
"packageManager": "[email protected]",
"resolutions": {
"@types/react@^16.14.23": "18.0.25",
"puppeteer-core@^2.1.1": "13.5.2"
}
}