-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.26 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.26 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"style:all": "yarn run style:lint && npm run style:prettier",
"style:lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"style:prettier": "prettier --check \"**/*.{js,jsx,ts,tsx}\"",
"make-pretty": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky install"
},
"dependencies": {
"emailjs-com": "^3.2.0",
"jquery": "^3.6.0",
"next": "12.0.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-tsparticles": "2.12.2",
"sharp": "^0.30.1",
"tsparticles": "2.0.6"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"autoprefixer": "^10.4.2",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.16",
"typescript": "^4.5.5"
}
}