-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.23 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
{
"name": "dictionary",
"private": true,
"version": "1.0.0",
"description": "",
"main": "backend-src/index.js",
"scripts": {
"start-server": "env $(cat ./.env.local) nodemon",
"codestyle": "prettier --write backend-src",
"dev": "env $(cat ./.env.local) next dev",
"build": "next build",
"start": "env $(cat ./.env.local) next start",
"lint": "next lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
},
"author": "",
"license": "ISC",
"dependencies": {
"@auth0/nextjs-auth0": "^1.7.0",
"antd": "^4.18.5",
"body-parser": "^1.19.1",
"ejs": "^3.1.6",
"express": "^4.17.2",
"express-openid-connect": "^2.5.2",
"mongoose": "^6.11.3",
"next": "^12.0.9",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@types/node": "17.0.8",
"@types/react": "17.0.38",
"eslint": "8.6.0",
"eslint-config-next": "12.0.8",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.2",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"standard": "^16.0.4",
"typescript": "^4.5.5"
}
}