-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.85 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.85 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "aefinder-website",
"version": "1.3.0",
"private": true,
"scripts": {
"dev": "NEXT_PUBLIC_NODE_ENV=development NEXT_PUBLIC_NETWORK_ENV=dev NEXT_PUBLIC_WEBSITE_NAME=aefinder next dev",
"out": "SKIP_SSR=1 next build && next export",
"build:dev": "NEXT_PUBLIC_NETWORK_ENV=dev NEXT_PUBLIC_WEBSITE_NAME=aefinder next build",
"build:pro": "NEXT_PUBLIC_NETWORK_ENV=mainnet NEXT_PUBLIC_WEBSITE_NAME=aefinder next build",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint --max-warnings=0 src",
"typecheck": "tsc --noEmit --incremental false",
"test:watch": "jest --watch",
"test": "jest --passWithNoTests",
"format": "prettier -w .",
"format:check": "prettier -c .",
"dev:analyze": "PORT=4000 ANALYZE=true next dev",
"prepare": "husky install"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@next/third-parties": "^14.1.0",
"@vercel/analytics": "^0.1.6",
"antd": "^4.21.7",
"antd-mobile": "^5.30.0",
"apisauce": "^2.1.6",
"axios-hooks": "^3.1.5",
"bignumber.js": "^9.1.0",
"clsx": "^1.2.1",
"firebase": "^9.14.0",
"framer-motion": "^9.0.7",
"lru-cache": "^7.14.0",
"next": "14.0.4",
"next-babel-conditional-ssg-ssr": "^1.0.0",
"next-compose-plugins": "^2.2.1",
"query-string": "^7.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-query": "^3.39.2",
"react-use": "^17.4.0",
"ua-parser-js": "^1.0.33"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@next/bundle-analyzer": "^12.2.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/lodash": "^4.14.191",
"@types/node": "20.10.5",
"@types/react": "18.2.45",
"@types/react-dom": "18.2.18",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^5.30.4",
"@typescript-eslint/parser": "^5.30.4",
"autoprefixer": "^10.0.1",
"babel-plugin-import": "^1.13.6",
"eslint": "8.19.0",
"eslint-config-next": "12.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": ">=6",
"jest": "^27.5.1",
"lint-staged": ">=10",
"lodash": "^4.17.21",
"next-transpile-modules": "^10.0.0",
"postcss-scss": "^4.0.9",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"sass": "^1.69.5",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^26.0.0",
"typescript": "4.7.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier -w"
],
"*.{css,scss}": [
"stylelint --fix",
"prettier -w"
]
},
"engines": {
"node": ">=18.0.0"
}
}