-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.35 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
{
"name": "medium-notifications-demo",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --pretty --noEmit"
},
"simple-git-hooks": {
"pre-commit": "npm run type-check && npx lint-staged && npx pretty-quick --staged"
},
"lint-staged": {
"*.@(ts|tsx)": [
"eslint --fix"
]
},
"dependencies": {
"@radix-ui/colors": "^0.1.8",
"@radix-ui/react-icons": "^1.0.3",
"@radix-ui/react-portal": "^0.1.3",
"@radix-ui/react-slider": "^0.1.3",
"@reduxjs/toolkit": "^1.7.1",
"clsx": "^1.1.1",
"framer-motion": "^6.0.0",
"lodash": "^4.17.21",
"ms": "^2.1.3",
"next": "12.0.8",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "^7.2.6",
"react-use": "^17.3.2"
},
"devDependencies": {
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.10",
"@types/react": "17.0.38",
"autoprefixer": "^10.4.2",
"eslint": "^8.7.0",
"eslint-config-next": "12.0.8",
"lint-staged": "^12.1.7",
"postcss": "^8.4.5",
"postcss-hover-media-feature": "^1.0.1",
"postcss-import": "^14.0.2",
"postcss-nesting": "^10.1.2",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"simple-git-hooks": "^2.7.0",
"tailwindcss": "^3.0.15",
"typescript": "^4.5.5"
}
}