-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.78 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "mammon-manager",
"version": "1.1.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"migrate": "node scripts/migrate-db.js",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@dinero.js/currencies": "^2.0.0-alpha.8",
"@nivo/bar": "^0.79.1",
"@nivo/calendar": "^0.79.1",
"@nivo/core": "^0.79.0",
"@nivo/line": "^0.79.1",
"@nivo/pie": "^0.79.1",
"@prisma/client": "^3.12.0",
"clsx": "^1.1.1",
"date-fns": "^2.22.1",
"dinero.js": "^2.0.0-alpha.8",
"dotenv": "^8.2.0",
"evergreen-ui": "^6.9.6",
"lodash": "^4.17.21",
"next": "^12.1.0",
"planetscale-node": "^0.3.0",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-colorful": "^5.3.0",
"react-dom": "^17.0.2",
"react-loading-skeleton": "^2.1.1",
"react-spinners": "^0.11.0",
"serverless-mysql": "^1.5.4",
"swr": "^0.3.11",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^14.14.6",
"@types/react": "^16.9.55",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.30.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.1",
"lint-staged": "^11.0.1",
"postcss-flexbugs-fixes": "4.2.1",
"postcss-preset-env": "^7.4.3",
"prisma": "^3.12.0",
"tailwindcss": "^2.2.4",
"typescript": "^4.0.5"
},
"overrides": {
"node-fetch": "2.6.7"
},
"license": "MIT",
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
}
}