-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"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": "next lint",
"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": "^5.2.4",
"highcharts": "^9.3.2",
"highcharts-react-official": "^3.1.0",
"mui": "^0.0.1",
"next": "^12.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-twitter-widgets": "^1.10.0",
"react-youtube": "^7.13.1"
},
"devDependencies": {
"@types/node": "17.0.0",
"@types/react": "17.0.37",
"eslint": "8.4.1",
"eslint-config-next": "^12.0.7",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"typescript": "4.5.4"
}
}