-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.23 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": "curso-platzi-react-avanzado-master",
"version": "1.0.0",
"description": "¡Sígueme en Youtube! https://www.youtube.com/midudev",
"main": "index.js",
"scripts": {
"now-build": "npm run build",
"build": "webpack",
"lint": "standard",
"dev": "webpack-dev-server --history-api-fallback",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",
"html-webpack-plugin": "^4.2.0",
"standard": "^14.3.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"@reach/router": "^1.3.3",
"apollo-boost": "^0.4.7",
"graphql": "^15.0.0",
"intersection-observer": "^0.10.0",
"react": "^16.13.1",
"react-apollo": "^3.1.5",
"react-dom": "^16.13.1",
"react-icons": "^3.10.0",
"styled-components": "^5.1.0"
},
"standard": {
"ignore": [
"/api/**"
]
},
"eslintConfig": {
"extends": [
"./node_modules/standard/eslintrc.json"
]
}
}