-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"private": true,
"scripts": {
"dev": "node src/scripts/generate-data.js && next dev",
"build": "node src/scripts/generate-data.js && next build",
"start": "next start",
"update-msci": "node src/scripts/update-msci.js",
"update-yahoo": "node src/scripts/update-yahoo.js",
"update-inflation": "node src/scripts/update-inflation.js",
"generate-data": "node src/scripts/generate-data.js",
"lint": "prettier --check ./src",
"lint:fix": "prettier --write ./src",
"prepare": "husky"
},
"browserslist": [
"defaults",
"not IE 11",
"not IE_Mob 11"
],
"prettier": {
"printWidth": 120
},
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.3.0",
"@mui/material": "^6.3.0",
"@mui/material-nextjs": "^6.3.0",
"@nivo/core": "0.88.0",
"@nivo/line": "0.88.0",
"next": "15.1.3",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "22.9.3",
"@types/react": "^18.3.18",
"axios": "^1.7.7",
"csvtojson": "2.0.10",
"downsample": "1.4.0",
"fast-xml-parser": "4.5.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"typescript": "^5.7.2"
}
}