forked from ui-schema/ui-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.8 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
{
"name": "ui-schema",
"version": "0.0.1",
"description": "",
"private": true,
"main": "index.js",
"scripts": {
"start": "npm run clean-dist && npm run serve -- demo",
"docs": "npm run serve -- docs",
"serve": "cross-env NODE_ENV=development node packerConfig.js --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.js --build --babel --webpack",
"build-babel": "cross-env NODE_ENV=production CI=true node packerConfig.js --build --babel",
"build-webpack": "cross-env NODE_ENV=production CI=true node packerConfig.js --build --webpack",
"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",
"profile": "cross-env NODE_OPTIONS='--max-old-space-size=4096' NODE_ENV=production node packerConfig.js --build --profile",
"clean": "npm run clean-dist && lerna clean -y",
"clean-dist": "node packerConfig.js --clean",
"bootstrap": "lerna bootstrap --force-local -- --legacy-peer-deps",
"hoist": "lerna bootstrap --hoist -- --legacy-peer-deps",
"link": "lerna link --force-local",
"test": "jest -c=\"packages/jest.config.ts\"",
"jest-clear": "jest -c=\"packages/jest.config.ts\" --detectOpenHandles --forceExit --clearCache",
"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, https://mlbr.xyz",
"license": "MIT",
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.8",
"@types/react": "^17.0",
"@types/testing-library__jest-dom": "^5.14.0",
"assert": "^2.0.0",
"cross-env": "^6.0.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react-hooks": "^4.3.0",
"lerna": "^3.22.1",
"merge-dirs": "^0.2.1",
"process": "^0.11.10",
"react-loadable": "^5.5.0",
"sloc": "^0.2.1",
"symlink-dir": "^3.1.1",
"ts-node": "^10.7.0",
"typescript": "^5.1.6"
},
"jest-runner-eslint": {
"cliOptions": {
"maxWarnings": 0
}
},
"dependencies": {
"@babel/plugin-proposal-private-methods": "^7.18.6",
"lerna-packer": "^0.7.0"
}
}