-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 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
{
"name": "hackernews-feed",
"version": "1.0.0",
"description": "An app which shows a list of the newest hackernews posts, in a charming way.",
"main": "webpack.config.js",
"directories": {
"test": "tests"
},
"dependencies": {
"babel-minify-webpack-plugin": "^0.3.1",
"eslint-config-airbnb": "^18.2.0",
"firebase": "^7.15.5",
"mini-css-extract-plugin": "^0.9.0",
"webpack-cli": "^3.3.12"
},
"devDependencies": {
"@babel/preset-env": "^7.10.4",
"babel-jest": "^26.1.0",
"css-loader": "^3.6.0",
"cypress": "^4.9.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.1.0",
"sass": "^1.26.9",
"sass-loader": "^9.0.0",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"test": "jest",
"cypress": "npx cypress open",
"build": "webpack",
"start": "webpack-dev-server --open",
"watch": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felipebernardes/hackernews-feed.git"
},
"author": "Felipe Bernardes",
"license": "ISC",
"bugs": {
"url": "https://github.com/felipebernardes/hackernews-feed/issues"
},
"homepage": "https://github.com/felipebernardes/hackernews-feed#readme"
}