-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.62 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
{
"name": "metasearch",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 4000",
"build": "next build",
"start": "next start -p 4000"
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@apollo/client": "^3.3.15",
"antd": "^4.15.2",
"apollo-server-micro": "^2.23.0",
"axios": "^0.21.1",
"fs-extra": "^9.1.0",
"geoip-country": "^4.0.64",
"graphql": "^15.5.0",
"graphql-compose": "^7.25.1",
"graphql-compose-mongoose": "^9.2.2",
"graphql-tools": "^4.0.8",
"http-proxy-middleware": "^1.3.1",
"ismobilejs": "^1.1.1",
"limax": "^3.0.0",
"lodash": "^4.17.21",
"mongoose": "^5.12.6",
"next": "10.1.3",
"next-auth": "^3.19.3",
"next-pwa": "^5.2.14",
"next-seo": "^4.24.0",
"next-themes": "^0.0.14",
"react": "17.0.2",
"react-color": "^2.19.3",
"react-dom": "17.0.2",
"request-ip": "^2.1.3",
"simple-icons": "^4.21.0",
"swr": "^0.5.5"
},
"devDependencies": {
"@next/bundle-analyzer": "^10.1.3",
"@svgr/webpack": "^5.5.0",
"autoprefixer": "^10.2.5",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"postcss": "^8.2.10",
"prettier": "^2.2.1",
"tailwindcss": "^2.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint --fix"
],
"*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
"prettier --write"
]
}
}