-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.9 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
{
"name": "dicoding-first-submission-bfawdr",
"description": "The first submission of the 'Belajar Fundamental Aplikasi Web Dengan React' (Learn The Fundamental of Web Applications With React) course on the Dicoding about creating a notes app with React.js",
"author": "Syahda Romansyah <syahdarom@gmail.com>",
"private": true,
"version": "0.1.2",
"type": "module",
"scripts": {
"dev": "vite",
"dev:host": "vite --host",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"format": "prettier -w \"**/*.{js,jsx,ts,tsx,json,yaml,yml,css,md,mdx}\"",
"format-c": "prettier -c \"**/*.{js,jsx,ts,tsx,json,yaml,yml,css,md,mdx}\"",
"postinstall": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint",
"*.{js,jsx,ts,tsx,json,yaml,yml,css,md,mdx}": "prettier -w"
},
"dependencies": {
"@uiw/react-md-editor": "^4.0.1",
"auto-bind": "^5.0.1",
"classnames": "^2.3.2",
"primereact": "^10.2.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.21.0",
"react-syntax-highlighter": "^15.5.0",
"rehype-highlight": "^7.0.0",
"remark-gfm": "^4.0.0"
},
"devDependencies": {
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"postcss": "^8.4.32",
"prettier": "3.1.1",
"prettier-plugin-tailwindcss": "^0.5.9",
"tailwindcss": "^3.3.6",
"vite": "^5.0.0"
}
}