-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.41 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "community-news",
"description": "Personalised Tech/Dev News Curator",
"private": true,
"version": "0.1.0",
"license": "MIT",
"homepage": "https://news.fnplus.tech",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged"
}
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"deploy": "npm run build",
"eject": "react-scripts eject"
},
"repository": {
"type": "git",
"url": "https://github.com/fnplus/news-api"
},
"keywords": [],
"author": "@fnplusofficial",
"bugs": {
"url": "https://github.com/fnplus/news-api/issues"
},
"eslintConfig": {
"extends": "react-app"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"bootstrap": "^4.4.1",
"firebase": "^7.7.0",
"firebaseui": "^4.4.0",
"react": "^16.12.0",
"react-dnd": "^5.0.0",
"react-dnd-html5-backend": "^3.0.2",
"react-dom": "^16.12.0",
"react-firebaseui": "^4.1.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.3.0",
"react-tag-input": "^6.4.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"husky": "^4.2.1",
"lint-staged": "^10.0.2",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1"
}
}