generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
92 lines (92 loc) · 3.89 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
82
83
84
85
86
87
88
89
90
91
92
{
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "node propagateSdkVersions.js",
"start": "pnpm run shnip && pnpm --filter site run start",
"start:feedback-server": "pnpm --filter feedback-server run start",
"start:tutorial-todo-starter": "pnpm --filter todo-starter run dev",
"start:tutorial-todo-completed": "pnpm --filter todo-completed run dev",
"start:tutorial-book-reviews": "pnpm --filter book-reviews run start",
"start:tutorial-dinger-starter": "pnpm --filter dinger-starter run dev",
"start:tutorial-dinger-completed": "pnpm --filter dinger-completed run dev",
"start:tutorial-shared-todo-starter": "pnpm --filter shared-todo-starter run dev",
"start:tutorial-shared-todo-completed": "pnpm --filter shared-todo-completed run dev",
"start:widget": "pnpm --filter web5-quickstart-widgets start",
"start:new": "pnpm shnip:new && pnpm --filter site-new run start",
"serve:new": "pnpm --filter site-new run serve",
"build": "pnpm run shnip && pnpm --filter site run build",
"build:new": "pnpm shnip:new && pnpm --filter site-new run build",
"clear": "pnpm --filter site run clear",
"clear:new": "pnpm --filter site-new run clear",
"test": "pnpm test:js && pnpm test:kotlin && pnpm test:swift",
"test:apps": "pnpm --filter feedback-server test run",
"test:js": "pnpm vitest run --config vite.config.ts --no-threads",
"test:kotlin": "./site/testsuites/testsuite-kotlin/mvnw clean verify -f site/testsuites/testsuite-kotlin --batch-mode",
"test:rust": "cd ./site/testsuites/testsuite-rust && cargo test",
"test:swift": "swift test --package-path ./site/testsuites/testsuite-swift",
"test:versions": "node check-versions.js",
"test:watch": "pnpm run shnip && pnpm vitest --config vite.config.ts --watch",
"shnip": "node ./shnippet/src/cli --structure match && node ./shnippet/src/cli --structure byLanguage",
"shnip:new": "node ./shnip/dist/bin/cli.js",
"shnip:build:new": "node ./shnip build",
"test:js:new": "pnpm vitest run --config new-vite.config --no-threads",
"test:kotlin:new": "./site-new/testsuites/testsuite-kotlin/mvnw clean verify -f site-new/testsuites/testsuite-kotlin --batch-mode",
"test:swift:new": "swift test --package-path ./site-new/testsuites/testsuite-swift",
"test:rust:new": "cd ./site-new/testsuites/testsuite-rust && cargo test",
"test:new": "pnpm test:js:new && pnpm test:kotlin:new && pnpm test:swift:new"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.4.2",
"@fortawesome/free-solid-svg-icons": "6.4.2",
"@fortawesome/react-fontawesome": "0.2.0",
"@tbdex/http-client": "1.1.0",
"@tbdex/http-server": "1.1.0",
"@tbdex/protocol": "1.1.0",
"@web5/api": "0.12.0",
"@web5/common": "1.0.0",
"@web5/credentials": "1.1.1",
"@web5/crypto": "1.0.5",
"@web5/crypto-aws-kms": "1.0.5",
"@web5/dids": "1.1.5",
"@web5/identity-agent": "0.6.4",
"bluehawk": "1.4.0",
"express": "4.18.2",
"font-awesome": "4.7.0",
"googleapis": "128.0.0",
"msw": "2.1.7",
"node-fetch": "3.3.2",
"process": "0.11.10",
"qrcode": "^1.5.3",
"react-confetti": "^6.1.0",
"react-fontawesome": "1.7.1",
"react-markdown": "8.0.7",
"react-qr-reader": "^3.0.0-beta-1",
"react-slick": "0.29.0",
"react18-json-view": "^0.2.8",
"slick-carousel": "1.8.1",
"url": "^0.11.4",
"xml2js": "0.6.2"
},
"devDependencies": {
"@vitest/browser": "0.34.1",
"@vitest/coverage-istanbul": "0.34.1",
"fake-indexeddb": "4.0.2",
"glob": "10.3.10",
"husky": "8.0.3",
"playwright": "1.39.0",
"rimraf": "5.0.5",
"start-server-and-test": "2.0.3",
"vitest": "0.34.1",
"webdriverio": "8.13.13"
},
"pnpm": {
"overrides": {
"vite": "5.1.4",
"nuxt": "3.10.3",
"postcss": "8.4.31",
"axios": "1.7.4",
"elliptic": "6.5.7"
}
}
}