-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "idkyet",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"eslint": "eslint \"**/*.js",
"stylelint": "stylelint \"**/*.css",
"prettier": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.8.0",
"@mui/material": "^5.8.1",
"@tinymce/tinymce-react": "^4.1.0",
"date-fns": "^2.28.0",
"nanoid": "^3.3.4",
"next": "12.1.6",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-quill": "^2.0.0-beta.4",
"zustand": "^4.0.0-rc.1"
},
"devDependencies": {
"@types/react": "^18.0.9",
"eslint": "8.16.0",
"eslint-config-next": "12.1.6",
"eslint-config-react-app": "^7.0.1",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"stylelint": "^14.8.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0"
}
}