-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.02 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
{
"name": "curso-platzi-react-avanzado",
"version": "1.0.0",
"description": "Repositorio con el código del [Curso Avanzado de React de Platzi](https://platzi.com/cursos/react-avanzado/)",
"main": "index.js",
"scripts": {
"now-build": "npm run build",
"build": "webpack",
"lint": "standard",
"dev": "webpack-dev-server --history-api-fallback",
"serve:dev": "webpack --mode 'development' && npx serve dist -s",
"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.4.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"html-webpack-plugin": "^3.2.0",
"standard": "^12.0.1",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.3",
"webpack-dev-server": "^3.7.1",
"webpack-pwa-manifest": "^4.0.0",
"workbox-webpack-plugin": "^4.3.1"
},
"dependencies": {
"@reach/router": "^1.2.1",
"apollo-boost": "^0.4.2",
"graphql": "^14.3.1",
"intersection-observer": "^0.7.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-apollo": "^2.4.5",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-icons": "^3.7.0",
"styled-components": "^4.3.1"
},
"standard": {
"ignore": [
"/api/**"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"./node_modules/standard/eslintrc.json"
]
}
}