-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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": "indigent-stats-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write ."
},
"dependencies": {
"@azure/cosmos": "^3.17.3",
"@vercel/analytics": "^0.1.8",
"axios": "^1.2.1",
"d3": "7.6.1",
"kysely": "^0.23.5",
"next": "13.0.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"recharts": "^2.2.0",
"styled-components": "5.3.6",
"swr": "^2.0.3",
"zod": "^3.20.2"
},
"devDependencies": {
"@types/d3": "7.4.0",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@types/recharts": "^1.8.24",
"@types/styled-components": "^5.1.26",
"babel-plugin-styled-components": "2.0.7",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"eslint": "8.28.0",
"eslint-config-next": "13.0.5",
"prettier": "^2.8.2",
"typescript": "4.9.3"
},
"prettier": {
"tabWidth": 4,
"semi": false,
"singleQuote": true
}
}