-
Notifications
You must be signed in to change notification settings - Fork 370
/
package.json
51 lines (51 loc) · 1.71 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
{
"name": "jsonforms-monorepo",
"engines": {
"node": "^18.19.0",
"pnpm": ">=7.13.4"
},
"scripts": {
"lerna": "lerna",
"preparePublish": "git clean -dfx && pnpm i --frozen-lockfile && pnpm run clean && pnpm run build && pnpm run doc && pnpm run test",
"merge-report": "mkdir -p coverage && lcov-result-merger 'packages/**/coverage/lcov.info' 'coverage/lcov.info' --prepend-source-files",
"check-format": "echo 'temporarily disabled'",
"build": "lerna run build",
"bundle": "lerna run bundle",
"clean": "lerna run clean",
"doc": "lerna run doc",
"test": "lerna run test",
"test-cov": "lerna run test-cov",
"lint": "lerna run --no-bail lint",
"lint:fix": "lerna run --no-bail lint:fix",
"build:examples-app": "lerna run build:examples-app && node packages/examples-app/prepare-examples-app.js"
},
"devDependencies": {
"@angular/core": "^17.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.5",
"@babel/plugin-proposal-optional-chaining": "^7.16.5",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.149",
"ajv": "^8.6.1",
"ajv-formats": "^2.1.0",
"babel-loader": "^8.0.6",
"core-js": "^3.9.1",
"coveralls": "^3.0.9",
"cross-env": "^7.0.2",
"css-loader": "^3.2.0",
"istanbul-lib-coverage": "^3.2.0",
"lcov-result-merger": "^3.1.0",
"lerna": "^6.6.2",
"nan": "^2.14.2",
"nyc": "^15.1.0",
"prettier": "^2.8.4",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.4.0",
"tslib": "^2.5.0",
"typescript": "~5.2.2",
"webpack": "^5.78.0",
"webpack-merge": "^5.10.0"
}
}