-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 3.54 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "nof-landing",
"license": "MIT",
"private": true,
"version": "0.1.219",
"proxy": "https://gamma-microservice-7bteynlhua-uc.a.run.app",
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"create-env": "printenv > .env",
"serve": "yarn build && npm i -g http-server && http-server ./.next",
"export": "yarn build && next export -o _static",
"lint": "eslint \"src/**/*.{js,jsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx}\"",
"prettier": "prettier --write \"src/**/*.{js,jsx}\"",
"rm:all": "rm -rf node_modules .next out dist build",
"re:start": "yarn rm:all && yarn install && yarn dev",
"re:build": "yarn rm:all && yarn install && yarn build",
"re:build-npm": "npm run rm:all && npm install && npm run build",
"dev:ts": "yarn dev & yarn ts:watch",
"git-prune": "git remote prune origin",
"git-config": "git config --global core.autocrlf true",
"git-log": "git log --oneline --decorate",
"gitp": "git log --pretty=”%s”",
"commitlint-check-comit-msg": "npx --no-install commitlint --edit \"$1\"",
"pre-commit": "npm run prettier && npm run lint:fix && npm run commitlint-check-comit-msg",
"inspect": "cross-env NODE_OPTIONS=\"--inspect --trace-warnings\" next dev",
"docker:build": "bash ./scripts/docker-build.sh",
"docker:run": "bash docker run -d -p 3000:3000 --name my-nextjs-container my-nextjs-app"
},
"dependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@sendgrid/mail": "^8.1.0",
"@walletconnect/web3-provider": "^1.8.0",
"@web3modal/ethers5": "^3.5.1",
"axios": "^1.6.2",
"book-flip": "^1.0.0",
"ethers": "^5.7.2",
"framer-motion": "^9.0.2",
"gsap": "^3.11.4",
"jimp": "^0.22.8",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"mongodb": "^5.5.0",
"nes.css": "^2.3.0",
"next": "13.0.1",
"next-i18next": "^15.0.0",
"next-pwa": "^5.6.0",
"nodemailer": "^6.9.8",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-card-flip": "^1.2.2",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"react-scroll": "^1.8.8",
"sass": "^1.55.0",
"sharp": "0.32.6",
"styled-components": "^5.3.6",
"sweetalert2": "^11.6.15",
"swiper": "8.4.5",
"swr": "^2.0.3",
"url-loader": "^4.1.1",
"use-local-storage": "^2.3.6",
"uuid": "^9.0.1"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@next/eslint-plugin-next": "^14.0.4",
"eslint": "^8.55.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-perfectionist": "^2.5.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"file-loader": "^6.2.0",
"husky": "^8.0.3",
"pre-commit": "^1.2.2",
"prettier": "^3.1.0"
},
"cacheDirectories": [
".next/cache"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.1.0",
"yarn": ">=1.22.10"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
}
}