-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.22 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
{
"name": "photoviewer",
"version": "0.1.0",
"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 .",
"test": "jest"
},
"dependencies": {
"@datapunt/matomo-tracker-react": "^0.5.1",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@types/react-blockies": "^1.4.1",
"axios": "^0.21.1",
"ethers": "^5.5.2",
"file-saver": "^2.0.5",
"moment": "^2.29.1",
"next": "^12.3.2",
"pretty-bytes": "^6.0.0",
"react": "^17.0.2",
"react-blockies": "^1.4.1",
"react-dom": "17.0.2",
"react-hook-form": "^7.22.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^11.1.2",
"@next/eslint-plugin-next": "^11.1.2",
"@svgr/webpack": "^5.5.0",
"@tailwindcss/aspect-ratio": "^0.2.1",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@types/file-saver": "^2.0.5",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.9",
"@types/react": "^17.0.52",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"autoprefixer": "^10.3.4",
"babel-jest": "^27.3.1",
"cross-env": "^7.0.3",
"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": "^27.3.1",
"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",
"typescript": "4.4.2"
}
}