-
Notifications
You must be signed in to change notification settings - Fork 269
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.06 KB
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
{
"name": "nigerialogos",
"version": "1.0.0",
"description": "an open source website for downloading high quality",
"main": "index.html",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format:js": "prettier --write",
"lint:js:fix": "eslint --fix",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PaystackHQ/nigerialogos.git"
},
"author": "Demilade Olaleye, Chinonso Raymond, Adedoyin Akande",
"license": "ISC",
"bugs": {
"url": "https://github.com/PaystackHQ/nigerialogos/issues"
},
"homepage": "https://github.com/PaystackHQ/nigerialogos#readme",
"devDependencies": {
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.0",
"sass": "^1.97.2",
"vite": "^7.3.1"
},
"lint-staged": {
"*.js": [
"npm run format:js",
"npm run lint:js:fix"
]
}
}