-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
93 lines (93 loc) · 2.94 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
93
{
"name": "fairdrive",
"version": "0.2.2",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"analyse:base": "madge src/ --extensions ts,tsx",
"analyse:unused": "node scripts/detect-unused.js",
"analyse:circular": "yarn analyse:base --circular",
"analyse:orphans": "yarn analyse:base --orphans",
"format": "prettier --write \"**/*.+(ts|tsx|css|md)\"",
"format:check": "prettier --check .",
"lint": "eslint --ext .ts,.tsx",
"lint:fix": "eslint --ext .ts,.tsx --fix .",
"check:types": "tsc --project tsconfig.json",
"test": "jest"
},
"dependencies": {
"@datapunt/matomo-tracker-react": "^0.5.1",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@fairdatasociety/blossom": "^0.5.0",
"@fairdatasociety/fdp-storage": "^0.19.0",
"@headlessui/react": "^1.7.14",
"@metamask/sdk": "^0.5.6",
"@types/react-blockies": "^1.4.1",
"axios": "^0.21.1",
"copy-to-clipboard": "^3.3.3",
"cross-blob": "^3.0.1",
"crypto-js": "^4.2.0",
"ethers": "^5.6.9",
"file-saver": "^2.0.5",
"framer-motion": "^10.12.18",
"moment": "^2.29.1",
"next": "12.2.5",
"next-pwa": "^5.6.0",
"node-stdlib-browser": "^1.2.0",
"pretty-bytes": "^5.6.0",
"react": "^18.2.0",
"react-blockies": "^1.4.1",
"react-confetti": "^6.1.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-dropzone": "^11.5.1",
"react-hook-form": "^7.34.2",
"react-intl-universal": "^2.6.21",
"react-loader-spinner": "^5.3.3",
"swr": "^1.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^11.1.2",
"@next/eslint-plugin-next": "^11.1.2",
"@svgr/webpack": "^7.0.0",
"@tailwindcss/aspect-ratio": "^0.2.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/crypto-js": "^4.2.1",
"@types/file-saver": "^2.0.5",
"@types/jest": "^29.5.1",
"@types/node": "^17.0.9",
"@types/react": "^17.0.37",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"autoprefixer": "^10.3.4",
"babel-jest": "^29.5.0",
"cross-env": "^7.0.3",
"crypto-browserify": "^3.12.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"file-loader": "^6.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"madge": "^5.0.1",
"path": "^0.12.7",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"prop-types": "^15.7.2",
"sass": "^1.39.0",
"tailwindcss": "^2.2.9",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "4.4.2"
}
}