This repository has been archived by the owner on Jan 5, 2023. It is now read-only.
forked from epam/UUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.02 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
{
"name": "@uui/monorepo",
"private": true,
"version": "2.1.434",
"description": "",
"main": "index.js",
"scripts": {
"analyzer": "webpack-bundle-analyzer app/build/bundle-stats.json",
"postinstall": "cd server && yarn",
"test": "node uui-build/scripts/runTests.js",
"coverage": "yarn test --coverage",
"process-icons": "node uui-build/scripts/processIcons.js",
"start": "cd ./app && cross-env DEV=TRUE yarn start",
"next:dev": "cd ./next-app && yarn && node ../uui-build/scripts/runNextApp.js && yarn dev",
"build": "cd ./app && yarn build --stats",
"build-dev": "cd ./app && yarn build-dev",
"start-server": "cd ./app && yarn server",
"lint": "npx tslint -p ./tsconfig.json -e node_modules",
"style-lint": "npx stylelint \"**/*.{scss,less}\"\n",
"format": "npx tslint -p ./tsconfig.json --fix -e node_modules",
"copy-to-template": "node uui-build/scripts/copyToTemplate",
"build-server-helpers": "npx tsc ./uui-core/data/querying/getFilterPredicate.ts --outDir ./server/helpers/",
"generate-components-api": "cd uui-build && yarn generate-components-api",
"transform-tokens": "tsc --esModuleInterop uui-build/tokens-converter/index.ts && node uui-build/tokens-converter",
"release": "lerna publish --force-publish",
"build-modules": "learn run build"
},
"repository": {
"type": "git",
"url": "git@github.com:epam/UUI.git"
},
"workspaces": {
"packages": [
"app",
"epam-assets",
"loveship",
"epam-promo",
"uui",
"uui-core",
"uui-components",
"uui-build",
"uui-docs",
"uui-db",
"uui-timeline",
"uui-editor",
"extra",
"draft-rte"
]
},
"author": "",
"license": "MIT",
"resolutions": {
"@types/react": "17.0.3",
"@types/history": "4.7.9"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"lerna": "3.22.1",
"tslib": "^2.3.1",
"cross-env": "^7.0.3",
"typedoc": "0.17.4"
}
}