-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.57 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
{
"name": "name",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx,.js,json",
"lint:fix": "eslint . --ext .ts,.tsx,.js,json --fix",
"prepare": "husky install"
},
"dependencies": {
"@types/humanize-duration": "^3.27.1",
"@types/styled-components": "^5.1.14",
"html-react-parser": "^2.0.0",
"humanize-duration": "^3.27.2",
"luxon": "^2.4.0",
"next": "^12.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"styled-components": "^5.3.1"
},
"devDependencies": {
"@types/luxon": "^2.3.2",
"@types/node": "^18.0.0",
"@types/react": "17.0.24",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"dotenv": "^10.0.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"eslint-plugin-unused-imports": "^1.1.1",
"husky": ">=6",
"lint-staged": ">=10",
"typescript": "4.4.3",
"typescript-eslint-parser": "^22.0.0"
},
"lint-staged": {
"*.{ts,tsx,js}": "eslint --cache --fix"
}
}