-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 914 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 914 Bytes
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
{
"name": "orapay-api",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 4095",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc",
"format": "prettier --write './**/*.{js,jsx,ts,tsx}' --config ./.prettierrc"
},
"dependencies": {
"@types/node": "20.3.1",
"axios": "1.3.2",
"eslint": "8.42.0",
"eslint-config-next": "13.4.6",
"http-status-codes": "^2.3.0",
"husky": "8.0.3",
"next": "13.4.6",
"pg": "^8.11.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "5.1.3",
"yarn": "^1.22.21"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,scss,css,tsx}": [
"yarn format"
]
},
"devDependencies": {
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"prettier": "2.4.1"
}
}