-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
90 lines (90 loc) · 3.1 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@uui/monorepo",
"private": true,
"version": "2.1.434",
"description": "",
"engines": {
"node": ">=18.x"
},
"scripts": {
"analyzer": "cd app && yarn analyzer",
"build": "lerna run build",
"build-dev": "cd ./app && yarn build-dev",
"build-modules": "lerna run build",
"build-server-helpers": "tsc --esModuleInterop uui-core/src/data/querying/getFilterPredicate.ts --outDir ./server/helpers/",
"copy-to-template": "node uui-build/scripts/copyToTemplate",
"eslint": "cross-env LINT_SCRIPT=true yarn --cwd uui-build lint --eslint",
"eslint-fix": "yarn eslint --fix",
"generate-components-api": "yarn --cwd uui-build generate-components-api",
"generate-theme-tokens": "yarn --cwd uui-build generate-theme-tokens",
"lint-staged": "cross-env LINT_STAGED=true npx lint-staged",
"next-app:dev": "cd ./next-demo/next-app && yarn && node ../../uui-build/scripts/runNextApp.js && yarn dev",
"next-pages:dev": "cd ./next-demo/next-pages && yarn && node ../../uui-build/scripts/runNextApp.js && yarn dev",
"postinstall": "cd server && yarn",
"prepare": "husky install",
"process-icons": "node uui-build/scripts/processIcons.js icons",
"release": "lerna publish --force-publish",
"start": "cd ./app && yarn start",
"start-sd": "cd ./app && yarn start-sd",
"start-server": "cd ./app && yarn server",
"stylelint": "yarn --cwd uui-build lint --stylelint",
"stylelint-fix": "yarn stylelint --fix",
"test": "node uui-build/scripts/runTests.js --config=./jest.config.js",
"test-watch": "yarn test --watchAll",
"test-ci": "cross-env CI=true yarn test",
"test-report": "yarn test --collectCoverage",
"test-typecheck": "tsc --project ./tsconfig.test.json",
"test-update": "yarn test --updateSnapshot",
"test-e2e": "yarn --cwd uui-e2e-tests test-e2e",
"test-e2e-chromium": "yarn --cwd uui-e2e-tests test-e2e-chromium",
"test-e2e-update": "yarn --cwd uui-e2e-tests test-e2e-update",
"test-e2e-open-report": "yarn --cwd uui-e2e-tests test-e2e-open-report",
"track-bundle-size": "yarn --cwd uui-build track-bundle-size",
"track-bundle-size-override": "yarn track-bundle-size --override-baseline"
},
"repository": {
"type": "git",
"url": "[email protected]:epam/UUI.git"
},
"workspaces": {
"packages": [
"app",
"uui-e2e-tests",
"draft-rte",
"epam-assets",
"epam-electric",
"epam-promo",
"extra",
"loveship",
"test-utils",
"uui",
"uui-build",
"uui-components",
"uui-core",
"uui-db",
"uui-docs",
"uui-editor",
"uui-timeline",
"templates/uui-cra-template"
]
},
"author": "",
"license": "MIT",
"resolutions": {
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@types/history": "4.7.11",
"@types/node": "18.19.31",
"typescript": "5.4.2"
},
"devDependencies": {
"@types/node": "18.19.31",
"cross-env": "^7.0.3",
"husky": "8.0.3",
"lerna": "5.6.2",
"lint-staged": "12.5.0",
"postcss-scss": "^4.0.6",
"tslib": "^2.6.2",
"typedoc": "0.17.4"
}
}