-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
68 lines (68 loc) · 2.63 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": "mock-app",
"version": "0.1.0-beta",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "cp app-config.json packages/mock-app/src/constants/app-config.json && cd packages/mock-app && yarn start",
"build": "yarn build:services && yarn build:components && yarn build:untp-test-suite",
"build:services": "cd packages/services && yarn run build",
"build:components": "cd packages/components && yarn run build",
"build:untp-test-suite": "cd packages/untp-test-suite && yarn run build",
"build-clean": "rimraf --glob ./yarn.lock ./node_modules ./packages/*/tsconfig.tsbuildinfo ./packages/*/build ./packages/*/node_modules",
"test": "lerna exec -- yarn jest",
"test:coverage": "lerna exec -- yarn jest --coverage && rm -rf coverage && istanbul-merge --out coverage/coverage-final.json packages/*/coverage/coverage-final.json && nyc report --temp-dir=./coverage --reporter=html --reporter=json-summary",
"test:components": "cd packages/components && yarn run test",
"test:services": "cd packages/services && yarn run test",
"test:mock-app": "cd packages/mock-app && yarn run test",
"test:untp-test-suite": "cd packages/untp-test-suite && yarn run test",
"test:vc-test-suite": "cd packages/vc-test-suite && yarn run test",
"test:integration:untp-test-suite": "cd packages/untp-test-suite && yarn run test:integration",
"storybook:components": "cd packages/components && yarn run storybook",
"storybook:mock-app": "cd packages/mock-app && yarn run storybook",
"untp": "node ./packages/untp-test-suite/build/interfaces/cli/cli.js",
"upgrade:packages": "yarn -r --stream upgrade --latest",
"version": "lerna version",
"prepare": "husky install",
"lint": " yarn eslint packages"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/fs-extra": "11.0.4",
"@types/jest": "29.5.11",
"@types/node": "20.10.6",
"@types/uuid": "^9.0.7",
"cross-env": "^7.0.3",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.0",
"jest": "29.7.0",
"jest-config": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-environment-node": "29.7.0",
"lerna": "8.0.1",
"lerna-changelog": "2.2.0",
"prettier": "3.1.1",
"pretty-quick": "3.1.3",
"ts-jest": "29.1.1",
"ts-node": "10.9.2",
"typescript": "^4"
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"@types/eslint": "^8.4.6",
"strip-ansi": "6.0.0",
"string-width": "4.0.0"
},
"engines": {
"node": ">= 20.12.2"
},
"dependencies": {
"rimraf": "^5.0.5",
"istanbul-merge": "2.0.0",
"nyc": "17.1.0"
}
}