-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 2.32 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
{
"name": "@ui-controls/dev",
"version": "0.0.1",
"description": "",
"private": true,
"type": "module",
"scripts": {
"start": "npm run clean-dist && npm run serve",
"serve": "cross-env NODE_ENV=development node packerConfig.js --serve",
"prebuild": "npm run clean-dist",
"build": "npm run build-babel && npm run build-backend && npm run dtsgen && npm run build-webpack",
"build-babel": "cross-env NODE_ENV=production CI=true node packerConfig.js --build --babel",
"build-backend": "cross-env NODE_ENV=production CI=true node packerConfig.js --build --backend",
"build-webpack": "cross-env NODE_ENV=production CI=true node packerConfig.js --build --webpack",
"profile": "cross-env NODE_OPTIONS='--max-old-space-size=4096' NODE_ENV=production node packerConfig.js --build --profile",
"clean-dist": "rimraf dist && rimraf coverage && node packerConfig.js --clean",
"clean-npm": "rimraf --glob **/*/node_modules",
"predev": "npm run clean",
"check": "npm run lint && npm run tscheck && npm run test",
"tscheck": "lerna run tscheck",
"lint": "cross-env NODE_ENV=test NODE_OPTIONS=\"--max-old-space-size=8192 --no-deprecation --experimental-vm-modules --unhandled-rejections=strict\" eslint -c=.eslintrc --ext=.tsx,.ts --max-warnings=0 'packages'",
"test": "cross-env NODE_ENV=development NODE_OPTIONS=\"--max-old-space-size=8192 --no-warnings --no-deprecation --experimental-vm-modules --unhandled-rejections=strict\" jest -c=\"jest.config.ts\" --passWithNoTests",
"tdd": "cross-env NODE_ENV=development npm run clean && npm test -- --watch --coverage=false",
"dtsgen": "lerna run dtsgen",
"release": "lerna publish from-package --contents build --no-git-reset"
},
"author": "Michael Becker, https://i-am-digital.eu",
"license": "MIT",
"devDependencies": {
"@types/react": "^18.0",
"@types/react-router-dom": "^5.3.3",
"babel-plugin-named-asset-import": "^0.3.8",
"cross-env": "^6.0.3",
"eslint-plugin-react-hooks": "^5.0.0",
"lerna": "^8.1.9",
"lerna-packer": "0.10.2",
"rimraf": "^5.0.10",
"sloc": "^0.3.2",
"ts-node": "^10.9.2",
"typescript": "~5.3.3"
},
"workspaces": [
"packages/*"
]
}