-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
81 lines (81 loc) · 2.17 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
79
80
81
{
"private": true,
"scripts": {
"build": "rm -rf ./dist/ && rollup --config && cp app.json dist/ && node build_bundle.js dist/",
"bundle": "node build_bundle.js dist",
"build-proto": "buf generate src/endpoints/proto",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"e2e-test": "node --import 'data:text/javascript,import { register } from \"node:module\"; import { pathToFileURL } from \"node:url\"; register(\"./loader-register.js\", pathToFileURL(\"./\"));' ./test/e2e-test/src/index.ts"
},
"type": "module",
"engines": {
"node": ">=16"
},
"dependencies": {
"@bufbuild/buf": "1.46.0",
"@bufbuild/protobuf": "1.5.0",
"@bufbuild/protoc-gen-es":"1.5.0",
"@microsoft/ccf-app": "5.0.7",
"js-base64": "3.7.7",
"node-forge": "1.3.1",
"npm": "10.9.0",
"pem-jwk": "2.0.0"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@jest/globals": "29.7.0",
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-typescript": "12.1.0",
"@types/jasmine": "5.1.4",
"@types/jest": "29.5.13",
"@types/node": "22.9.0",
"axios": "1.7.7",
"babel-jest": "29.7.0",
"express": "4.21.1",
"inquirer": "9.1.4",
"jest": "29.7.0",
"js-crypto-key-utils": "1.0.7",
"js-crypto-rsa": "1.0.7",
"jsonwebtoken": "9.0.2",
"node-fetch": "3.3.2",
"rollup": "4.24.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tslib": "2.7.0",
"typescript": "5.6.3",
"uglify-js": "3.19.3"
},
"jest": {
"preset": "ts-jest/presets/default-esm",
"collectCoverage": false,
"testEnvironment": "node",
"extensionsToTreatAsEsm": [
".ts"
],
"verbose": true,
"testMatch": [
"**/test/unit-test/**/*.test.(ts|js|mjs)"
],
"roots": [
"./"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/lib/"
],
"transform": {
"^.+\\.[tj]sx?$": "babel-jest"
},
"globals": {
"ts-jest": {
"useESM": true
}
},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
}
}
}