-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.3 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.3 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
56
57
{
"name": "black-dash",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prettier-fix": "prettier --write ."
},
"dependencies": {
"body-scroll-lock": "^3.1.5",
"framer-motion": "^4.1.17",
"next": "^11.0.0",
"next-seo": "^4.24.0",
"next-themes": "^0.0.14",
"next-transpile-modules": "^7.2.0",
"nprogress": "^0.2.0",
"postcss-nesting": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-table": "^7.7.0",
"recharts": "^2.0.9"
},
"devDependencies": {
"@types/body-scroll-lock": "^2.6.1",
"@types/node": "^15.12.2",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.9",
"@types/react-table": "^7.7.1",
"@types/recharts": "^2.0.0",
"autoprefixer": "^10.2.6",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"postcss": "^8.3.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.1",
"tailwindcss": "^2.1.4",
"typescript": "^4.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"git add"
],
"**/*.{md,mdx,json}": [
"prettier --write",
"git add"
]
}
}