-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.87 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
{
"name": "meme-governance-frontend",
"version": "1.0.0",
"homepage": "https://axlabs.github.io/meme-governance-frontend/",
"scripts": {
"dev": "next --port 8080",
"build": "next build",
"start": "next start",
"build-stats": "ANALYZE=true npm run build",
"export": "next export -o dist",
"build-prod": "run-s clean build export",
"predeploy": "run-s build-prod",
"deploy": "gh-pages -d dist",
"clean": "rimraf .next dist",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"prettier:format": "prettier --write src/**/*",
"prettier:check": "prettier -c src/**/*"
},
"dependencies": {
"@cityofzion/neon-js": "^5.0.0-next.10",
"classnames": "^2.2.6",
"js-sha256": "^0.9.0",
"next": "^10.1.2",
"next-seo": "^4.23.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-jsx-plugin-postcss": "^4.0.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^10.1.2",
"@tailwindcss/jit": "^0.1.18",
"@types/classnames": "^2.2.11",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"autoprefixer": "^10.2.5",
"eslint": "^7.23.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^3.2.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.9",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"tailwindcss": "^2.0.4",
"typescript": "^4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write src/**/*",
"eslint"
],
"*.json": [
"prettier --write"
]
},
"license": "ISC"
}