-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
72 lines (72 loc) · 2.03 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
{
"name": "next-starter-kit",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint ./ --ext ts,js,tsx,jsx",
"lint:fix": "eslint ./ --ext ts,js,tsx,jsx --fix",
"lint:cache": "eslint ./ --ext ts,js,tsx,jsx --cache --fix",
"format": "prettier 'src/**/*.{js,jsx,ts,tsx,json,css}' --write",
"type-check": "tsc",
"test": "jest",
"test:watch": "jest --verbose --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@erc725/erc725.js": "^0.8.0",
"@headlessui/react": "^1.4.2",
"@lukso/lsp-factory.js": "^1.1.2",
"@lukso/universalprofile-smart-contracts": "^0.4.1",
"classnames": "^2.3.1",
"next": "12.0.3",
"react": "17.0.2",
"react-blockies": "^1.4.1",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"use-clipboard-copy": "^0.2.0",
"web3": "^1.6.1"
},
"devDependencies": {
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@testing-library/dom": "^8.5.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.1",
"@types/react": "^17.0.21",
"@types/react-blockies": "^1.4.1",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"autoprefixer": "^10.4.2",
"babel-jest": "^27.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "4.3.8",
"jest": "^27.2.0",
"lint-staged": "^11.1.2",
"postcss": "^8.4.5",
"prettier": "^2.4.0",
"tailwindcss": "^3.0.15",
"typescript": "4.4"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint . --fix",
"prettier --write"
]
}
}