forked from Pledge-Dashboard/pledge-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.39 KB
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
{
"name": "pledge-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --config ./.prettierrc.json --write"
],
"**/*.{css,scss,md,html,json}": [
"prettier --config ./.prettierrc.json --write"
]
},
"dependencies": {
"@chakra-ui/icons": "^2.0.11",
"@chakra-ui/react": "^2.3.6",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"axios": "^1.1.3",
"coingecko-api": "^1.0.10",
"css-doodle": "^0.30.7",
"dayjs": "^1.11.6",
"framer-motion": "^7.6.2",
"lightweight-charts": "^3.8.0",
"lint-staged": "^13.0.3",
"mongodb": "^4.11.0",
"next": "12.3.1",
"numeral": "^2.0.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "^1.3.0"
},
"devDependencies": {
"@types/node": "18.11.7",
"@types/numeral": "^2.0.2",
"@types/react": "18.0.24",
"@types/react-dom": "18.0.8",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-next": "13.0.0",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.0",
"prettier": "^2.7.1",
"typescript": "4.8.4"
}
}