forked from microsoft/ccf-app-samples
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 866 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 866 Bytes
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
{
"private": true,
"scripts": {
"build": "del-cli -f dist/ && rollup --config && cp app.json dist/ && node build_bundle.js dist/",
"bundle": "node build_bundle.js dist",
"test": "node --version"
},
"type": "module",
"engines": {
"node": ">=14"
},
"dependencies": {
"@microsoft/ccf-app": "^4.0.0",
"js-base64": "^3.5.2",
"jsrsasign": "^10.0.4",
"jsrsasign-util": "^1.0.2",
"jwt-decode": "^3.0.0",
"lodash-es": "^4.17.15",
"protobufjs": "^7.2.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-typescript": "^8.2.0",
"@types/jsrsasign": "^8.0.7",
"@types/lodash-es": "^4.17.3",
"del-cli": "^3.0.1",
"http-server": "^0.13.0",
"rollup": "^2.41.0",
"tslib": "^2.0.1",
"typescript": "^4.2.4"
}
}