-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.13 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
{
"name": "mynote-front-end",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev-build": "npm run build && npm run export && npm run start",
"build": "next build",
"start": "next start",
"lint": "run-s lint:*",
"lint:eslint": "eslint . --ext .ts,.tsx --fix --ignore-path .gitignore",
"lint:prettier": "prettier --write . --ignore-path .gitignore",
"prepare": "simple-git-hooks",
"export": "next export"
},
"simple-git-hooks": {
"pre-commit": "npm run lint"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.9.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@headlessui/react": "^1.5.0",
"@mui/icons-material": "^5.6.1",
"@mui/material": "^5.6.1",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/line-clamp": "^0.4.0",
"@tailwindcss/typography": "^0.5.4",
"autoprefixer": "^10.4.4",
"axios": "^0.26.1",
"dompurify": "^2.3.8",
"easymde": "^2.16.1",
"highlight.js": "^11.5.1",
"marked": "^4.0.19",
"next": "^12.1.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-loader-spinner": "^6.0.0-0",
"react-simplemde-editor": "^5.0.2",
"simple-git-hooks": "^2.7.0",
"swr": "^1.3.0"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.9.2",
"@types/node": "17.0.23",
"@types/react": "18.0.1",
"@types/react-dom": "18.0.0",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.13.0",
"eslint-config-next": "12.1.4",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"prettier-config-standard": "^5.0.0",
"serve": "^13.0.2",
"tailwindcss": "^3.0.24",
"typescript": "4.6.3"
}
}