-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
78 lines (78 loc) · 3.49 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
69
70
71
72
73
74
75
76
77
78
{
"name": "mock-app",
"version": "0.1.0-beta",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"copy-config": "cp app-config.json packages/mock-app/src/constants/app-config.json && cp app-config.json packages/components/src/constants/app-config.json",
"copy-config-test": "cp cypress/fixtures/app-config.json packages/mock-app/src/constants/app-config.json && cp cypress/fixtures/app-config.json packages/components/src/constants/app-config.json",
"start": "yarn copy-config && cd packages/mock-app && yarn start",
"start:e2e-test": "yarn copy-config-test && cd packages/mock-app && yarn start",
"start:untp-playground": "cd packages/untp-playground && PORT=4001 yarn dev",
"build": "yarn copy-config && 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:untp-playground": "cd packages/untp-playground && yarn run test",
"test:integration:untp-test-suite": "cd packages/untp-test-suite && yarn run test:integration",
"test:run-cypress":"cd e2e && yarn cypress run",
"test:open-cypress":"cd e2e && yarn cypress open",
"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": "cross-env NODE_OPTIONS=--max-old-space-size=8192 yarn eslint packages",
"release:doc": "node scripts/release-doc.js",
"generate-version-mapping": "node documentation/version-mapping/script.js"
},
"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",
"cypress": "^13.16.1",
"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": {
"istanbul-merge": "2.0.0",
"nyc": "17.1.0",
"rimraf": "^5.0.5"
}
}