forked from PaystackHQ/nigerialogos
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "nigerialogos",
"version": "1.0.0",
"description": "an open source website for downloading high quality",
"main": "index.html",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node-sass scss/main.scss -o css/",
"watch": "npm run build && node-sass scss/main.scss -o css/ --watch",
"serve": "live-server --host=localhost",
"dev": "run-p watch serve",
"format:js": "prettier --write",
"lint:js:fix": "eslint --fix"
},
"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": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"live-server": "^1.2.1",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"prettier": "1.18.2"
},
"lint-staged": {
"*.js": [
"npm run format:js",
"npm run lint:js:fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}