-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.16 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.16 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
44
45
46
47
48
{
"name": "rippro.github.io",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"export": "next export",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepare": "husky install",
"start": "next start"
},
"lint-staged": {
"*.{css,less,sass,scss}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/material": "^9.0.0",
"gray-matter": "^4.0.3",
"highcharts": "^12.5.0",
"highcharts-react-official": "^3.1.0",
"marked": "^18.0.0",
"next": "^16",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-youtube": "^10.1.0"
},
"devDependencies": {
"@types/node": "25.6.0",
"@types/react": "19.2.14",
"autoprefixer": "^10.4.27",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.3",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"postcss": "^8.5.9",
"prettier": "^3.8.2",
"tailwindcss": "^3.4.17",
"typescript": "6.0.2"
}
}