-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.1 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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"cypress": "cypress open",
"lint": "next lint",
"lint:fix": "next lint --fix",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
"prepare": "husky install"
},
"dependencies": {
"@auth0/nextjs-auth0": "^1.9.2",
"@emotion/react": "^11.10.5",
"@reduxjs/toolkit": "^1.8.6",
"axios": "^0.28.0",
"classnames": "^2.3.1",
"dotenv": "^10.0.0",
"graphql": "^16.8.1",
"graphql-request": "^4.3.0",
"next": "^14.2.12",
"next-translate": "^1.6.0",
"nodemailer": "^6.9.9",
"react": "^18.2.0",
"react-awesome-reveal": "^4.1.0",
"react-datocms": "^3.1.4",
"react-dom": "^18.2.0",
"react-google-recaptcha": "^2.1.0",
"react-redux": "^7.2.9",
"react-select": "^5.4.0",
"react-toastify": "^8.0.3",
"react-tsparticles": "^1.43.1",
"sass": "^1.55.0",
"sharp": "^0.32.6",
"sitemap": "^7.1.1",
"tsparticles": "^2.1.3",
"typewriter-effect": "^2.19.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.5.6",
"@svgr/webpack": "^6.5.1",
"@types/gtag.js": "^0.0.7",
"@types/node": "^18.19.18",
"@types/nodemailer": "^6.4.14",
"@types/react": "^18.2.58",
"@types/react-dom": "^18.2.19",
"@types/react-google-recaptcha": "^2.1.9",
"@types/react-redux": "^7.1.33",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"cypress": "^13.7.1",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
}
}