-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.95 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": "reactapp",
"version": "1.0.0",
"description": "Es una aplicación de MASCOTAS",
"main": "index.js",
"scripts": {
"now-build": "npm run build",
"build": "webpack",
"lint": "standard",
"dev": "webpack-dev-server --history-api-fallback",
"test": "cypress open",
"serve": "npx serve dist -s",
"serve:dev": "webpack --mode 'development' && npx serve dist -s",
"build:dev": "webpack --mode 'development'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RomarioAugustoEstradaFlorez/react-app"
},
"author": "Romario",
"license": "MIT",
"bugs": {
"url": "https://github.com/RomarioAugustoEstradaFlorez/react-app/issues"
},
"homepage": "https://github.com/RomarioAugustoEstradaFlorez/react-app#readme",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"cypress": "^5.1.0",
"html-webpack-plugin": "^4.3.0",
"standard": "^14.3.4",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-pwa-manifest": "^4.2.0",
"workbox-webpack-plugin": "^5.1.3"
},
"dependencies": {
"@reach/router": "^1.3.4",
"apollo-boost": "^0.4.9",
"graphql": "^15.3.0",
"intersection-observer": "^0.11.0",
"react": "^16.13.1",
"react-apollo": "^3.1.5",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-icons": "^3.10.0",
"styled-components": "^5.1.1"
},
"standard": {
"ignore": "/api/**"
},
"slintConfig": {
"parser": "babel-eslint",
"extends": [
"./node_modules/standard/eslintrc.json"
]
}
}