-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.74 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.74 KB
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
65
{
"name": "curso-platzi-react-avanzado",
"version": "1.0.0",
"description": "¡Sígueme en Youtube! https://www.youtube.com/midudev",
"main": "index.js",
"scripts": {
"build": "webpack",
"dev": "webpack serve --history-api-fallback",
"lint": "standard",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/midudev/curso-platzi-react-avanzado.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/midudev/curso-platzi-react-avanzado/issues"
},
"homepage": "https://github.com/midudev/curso-platzi-react-avanzado#readme",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"html-webpack-plugin": "^4.5.0",
"prettier": "^2.1.2",
"standard": "^16.0.0",
"svg-url-loader": "^7.1.1",
"webpack": "^5.3.2",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^4.2.1"
},
"dependencies": {
"@apollo/react-hooks": "^4.0.0",
"@reach/router": "^1.3.4",
"apollo-boost": "^0.4.9",
"graphql": "^15.4.0",
"intersection-observer": "^0.11.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-icons": "^3.11.0",
"styled-components": "^5.2.1"
},
"standard": {
"ignore": [
"api/**",
"dist/**"
]
},
"eslintConfing": {
"parser": "babel-eslint",
"extends": [
"./node_modules/standard/eslintrc.json"
]
}
}