-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
35 lines (35 loc) · 936 Bytes
/
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
{
"name": "demo-issuer",
"license": "MIT",
"private": true,
"contributors": [
"Kim Hamilton Duffy (https://github.com/kimdhamilton)",
"Sean Neville (https://github.com/psnevio)",
"Brice Stacey <[email protected]> (https://m2.xyz)",
"Matt Venables <[email protected]> (https://m2.xyz)"
],
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"setup": "./bin/setup",
"start": "next start",
"ts-node": "ts-node --compiler-options \"{\\\"module\\\":\\\"commonjs\\\"}\"",
"type-check": "tsc --pretty --noEmit"
},
"dependencies": {
"jsonwebtoken": "^9.0.0",
"next": "^12.1.6",
"qrcode.react": "^3.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"verite": "*"
},
"devDependencies": {
"autoprefixer": "^10.4.2",
"postcss": "^8.4.5",
"tailwindcss": "^3.0.17",
"tailwindcss-font-inter": "^3.0.1",
"ts-node": "^10.1.0"
}
}