forked from dailybruin/the-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 869 Bytes
/
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
{
"name": "the-stack",
"version": "1.0.0",
"description": "The Daily Bruin's data and tech blog.",
"main": "index.js",
"repository": "https://github.com/dailybruin/the-stack",
"author": "Daily Bruin Online <[email protected]>",
"license": "AGPL-3.0",
"scripts": {
"precommit": "lint-staged"
},
"eslintConfig": {
"extends": ["airbnb-base", "prettier"]
},
"prettier": {
"overrides": [
{
"files": "*.js",
"options": {
"singleQuote": true,
"trailingComma": "es5"
}
}
]
},
"lint-staged": {
"*.{js,scss,json,md}": ["prettier --write", "git add"]
},
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"husky": "^0.14.3",
"lint-staged": "^6.1.0",
"prettier": "^1.10.2"
}
}