-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.36 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
{
"name": "lilith-notipad",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next export",
"gc": "node ./scripts/gen-component.js",
"prepare": "husky install"
},
"dependencies": {
"@types/bcrypt": "5.0.0",
"axios": "0.27.2",
"bcrypt": "5.0.1",
"classnames": "2.3.1",
"cors": "2.8.5",
"dotenv": "16.0.2",
"jsonwebtoken": "8.5.1",
"mongoose": "6.5.4",
"next": "12.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.4.0"
},
"devDependencies": {
"@types/jsonwebtoken": "8.5.9",
"@types/node": "18.7.14",
"@types/react": "18.0.18",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "5.0.0",
"eslint": "8.0.1",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard-with-typescript": "22.0.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-n": "15.0.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.31.7",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.8.8",
"typescript": "*"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix .",
"*.{js,jsx,ts,tsx,css}": "prettier --write --check --cache ."
}
}