-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.94 KB
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
{
"name": "3id-management-app",
"version": "0.4.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"build:prod": "npm run build && rm -rf ../../public/v2 && mkdir -p ../../public/v2 && mv ./out/* ../../public/v2",
"dev:build": "NEXT_PUBLIC_CERAMIC_NETWORK=local npm run build:prod",
"build:dev": "NEXT_PUBLIC_CERAMIC_NETWORK=dev-unstable npm run build:prod",
"build:test": "NEXT_PUBLIC_CERAMIC_API=http://localhost:7777 npm run build:prod",
"build:clay": "NEXT_PUBLIC_CERAMIC_NETWORK=testnet-clay npm run build && rm -rf ../../public-clay/v2 && mkdir -p ../../public-clay/v2 && mv ./out/* ../../public-clay/v2"
},
"dependencies": {
"@3id/common": "^0.4.1",
"@3id/did-manager": "0.4.2-beta.0",
"@3id/did-provider": "^0.4.1",
"@3id/window-auth-provider": "^0.4.1",
"@3id/connect-service": "0.4.2-beta.1",
"@ceramicnetwork/blockchain-utils-linking": "^2.0.0",
"@ceramicnetwork/http-client": "^2.0.0",
"@ceramicnetwork/transport-postmessage": "^0.6.0",
"@ceramicstudio/multiauth": "^0.2.3",
"boring-avatars": "^1.6.1",
"caip": "^1.0.0",
"grommet": "^2.20.1",
"hex-to-rgb": "^1.0.1",
"jotai": "^0.16.8",
"next": "^12.0.0",
"polished": "^4.1.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"sass": "^1.48.0",
"sass-loader": "^12.4.0",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.0.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.13",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/styled-components": "^5.1.20",
"babel-plugin-styled-components": "^1.12.0",
"next-compose-plugins": "^2.2.1",
"next-images": "^1.8.4",
"rxjs": "^7.5.2",
"typescript": "4.6.3"
}
}