-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.71 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
{
"name": "petgram",
"version": "1.0.0",
"description": "**¡Sígueme en Youtube para más contenido de React y Javascript!** 👉 https://www.youtube.com/midudev",
"main": "index.js",
"scripts": {
"build": "webpack",
"serve:dev": "webpack --mode development && npx serve dist -s",
"vercel-build": "npm run build",
"dev": "webpack server --mode development --history-api-fallback",
"test": "cypress open",
"lint": "standard",
"lint-fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edgeorgie/Petgram.git"
},
"keywords": [],
"author": "Edwin Jorge <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/edgeorgie/Petgram/issues"
},
"homepage": "https://github.com/edgeorgie/Petgram#readme",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"babel-loader": "^8.2.3",
"cypress": "^9.1.1",
"html-webpack-plugin": "^5.5.0",
"standard": "^16.0.4",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
"webpack-pwa-manifest": "^4.3.0",
"workbox-webpack-plugin": "^6.4.2"
},
"dependencies": {
"@apollo/client": "^3.5.5",
"@reach/router": "^1.3.4",
"graphql": "^16.0.1",
"intersection-observer": "^0.12.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-icons": "^4.3.1",
"styled-components": "^5.3.3"
},
"standard": {
"ignore": [
"/api/**"
]
},
"eslintConfig": {
"extends": [
"./node_modules/standard/eslintrc.json"
]
}
}