-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
52 lines (52 loc) · 1.13 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
52
{
"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": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"husky": "^0.14.3",
"lint-staged": "^6.1.0",
"prettier": "^1.10.2"
},
"dependencies": {
"babel-preset-react": "^6.24.1",
"chosen-js": "^1.8.7",
"leaflet-easyprint": "^2.1.9",
"leaflet.bigimage": "^1.0.1",
"mongoose": "^5.8.10",
"react": "^16.12.0",
"react-dom": "^16.3.2",
"react-vis": "^1.11.7",
"vis-timeline": "^7.7.3"
}
}