-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
50 lines (50 loc) · 1.47 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
{
"name": "erc4337",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env TEST_RESULTS=url next dev",
"dev:localtestresults": "npm run cleanup-and-link && cross-env TEST_RESULTS=local next dev",
"clean": "rm -rf public/v0*",
"link": "if [ -d ../bundler-test-results ]; then for d in ../bundler-test-results/v0*; do ln -s $d public/ || exit 1; done; fi",
"cleanup-and-link": "npm run clean && npm run link",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier:check": "prettier --check \"./{pages,components,sections}/**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"./{pages,components,sections}/**/*.{ts,tsx}\""
},
"dependencies": {
"@headlessui/react": "^1.7.12",
"@types/node": "18.11.9",
"@types/react": "18.0.24",
"@types/react-dom": "18.0.8",
"next": "13.0.1",
"next-compose-plugins": "^2.2.1",
"nextra": "^2.2.14",
"nextra-theme-docs": "^2.2.14",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.8.0",
"react-player": "^2.11.2",
"typescript": "4.8.4"
},
"devDependencies": {
"autoprefixer": "^10.4.13",
"cross-env": "^7.0.3",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.18",
"prettier": "^2.7.1",
"tailwindcss": "^3.2.1"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --cache --fix"
],
"*.json": [
"prettier --write"
]
}
}