-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.25 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
{
"name": "next-fe-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "TAILWIND_MODE=watch next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@pinata/sdk": "^1.1.23",
"axios": "^0.24.0",
"daisyui": "^1.16.2",
"ethers": "^5.5.3",
"lit-js-sdk": "^1.1.110",
"lit-jwt-verifier": "^1.0.2",
"next": "^12.0.8",
"postcss-import": "^13.0.0",
"postcss-preset-env": "^6.7.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"sass": "^1.32.8",
"video.js": "^7.17.0",
"videojs-contrib-hls": "^5.15.0",
"videojs-contrib-quality-levels": "^2.1.0",
"videojs-hls-quality-selector": "^1.1.4"
},
"devDependencies": {
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"autoprefixer": "^10.4.2",
"eslint": "8.4.0",
"eslint-config-next": "12.0.6",
"eslint-config-prettier": "^8.3.0",
"husky": ">=6",
"lint-staged": ">=10",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.7",
"typescript": "^4.5.2"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,ts,tsx,css,md}": "prettier --write"
}
}