-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 3.1 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 3.1 KB
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
{
"name": "ui-schema-code",
"version": "0.0.2",
"description": "",
"private": true,
"type": "module",
"scripts": {
"start": "npm run clean-dist && npm run serve -- demo",
"docs": "npm run serve -- docs",
"serve": "cross-env NODE_ENV=development node packerConfig.mjs --serve",
"prebuild": "npm run clean-dist && npm run static-gen",
"build_": "npm run build-all && npm run dtsgen",
"build": "npm run build-babel && npm run dtsgen && npm run build-webpack",
"build-all": "cross-env NODE_ENV=production CI=true node packerConfig.mjs --build --babel --webpack",
"build-babel": "cross-env NODE_ENV=production CI=true node packerConfig.mjs --build --babel",
"build-webpack": "cross-env NODE_ENV=production CI=true node packerConfig.mjs --build --webpack",
"postbuild": "cp -r ./packages/kit-codemirror/build/ ./dist/kit-codemirror && cp -r ./packages/material-code/build/ ./dist/material-code",
"static-gen": "npm run sitemaps && npm run doc-gen && npm run page-index",
"sitemaps": "lerna run sitemap",
"doc-gen": "lerna run doc-gen",
"page-index": "lerna run page-index",
"dtsgen": "lerna run dtsgen",
"tscheck": "lerna run tscheck",
"profile": "cross-env NODE_OPTIONS='$NODE_OPTIONS --max-old-space-size=4096' NODE_ENV=production node packerConfig.mjs --build --profile",
"clean": "npm run clean-dist && lerna clean -y",
"clean-dist": "node packerConfig.mjs --clean && rimraf dist",
"clean-lock": "rimraf --glob packages/*/package-lock.json",
"check": "npm run lint && npm run tscheck && npm run test",
"lint": "cross-env NODE_ENV=test NODE_OPTIONS=\"$NODE_OPTIONS --max-old-space-size=8192\" eslint -c=eslint.config.js --ext=.tsx,.ts --max-warnings=0 'packages'",
"test": "jest -c=\"jest.config.ts\" --passWithNoTests",
"tdd": "npm test -- --watch --watchman --coverage=false",
"__release": "lerna run release --stream",
"sloc": "node ./sloc.js",
"release": "lerna publish from-package --contents build --no-git-reset"
},
"author": "Michael Becker <michael@bemit.codes> (https://bemit.codes)",
"license": "MIT",
"devDependencies": {
"@jest/types": "^29.6.3",
"@stylistic/eslint-plugin": "^3.1.0",
"@testing-library/dom": "^10.0.0",
"@testing-library/react": "^16.0.1",
"@types/react": "^19.0",
"ajv": "^8.17.1",
"babel-plugin-named-asset-import": "^0.3.8",
"babel-plugin-replace-import-extension": "^1.1.4",
"cross-env": "^7.0.3",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.2.0",
"jest-environment-jsdom": "^29.0.2",
"lerna": "^8.2.2",
"lerna-packer": "0.12.2",
"nodemon": "^3.1.7",
"react": "^19.0",
"react-dom": "^19.0",
"sloc": "^0.3.2",
"ts-node": "^10.9.1",
"tsx": "^4.19.2",
"typescript": "~5.4.5",
"typescript-eslint": "^8.34.1"
},
"workspaces": [
"packages/*"
]
}