-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
{
"name": "expenses",
"version": "0.1.0",
"description": "my expenses repository",
"main": "index.js",
"repository": "https://github.com/prvnbist/expenses",
"author": "Praveen Bisht",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start"
},
"dependencies": {
"@apollo/client": "^3.3.15",
"date-fns": "^2.21.1",
"dotenv": "^8.2.0",
"echarts": "^5.2.2",
"echarts-for-react": "^3.0.2",
"graphql": "^15.5.0",
"graphql-request": "^3.5.0",
"graphql-tag": "^2.11.0",
"next": "^10.1.3",
"node-fetch": "^2.6.1",
"react": "^17.0.2",
"react-csv": "^2.0.3",
"react-dom": "^17.0.2",
"react-modal": "^3.14.4",
"react-table": "^7.7.0",
"react-toast-notifications": "^2.4.4",
"react-use-pagination": "^1.1.0",
"styled-components": "5.2.3",
"subscriptions-transport-ws": "^0.9.18"
},
"devDependencies": {
"@types/react": "^17.0.8",
"tailwindcss": "2.2.4",
"twin.macro": "2.6.2",
"typescript": "^4.2.4",
"webpack-node-externals": "^3.0.0"
},
"babelMacros": {
"twin": {
"preset": "styled-components"
}
}
}