-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.66 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
{
"name": "c-react-advanced",
"version": "1.0.0",
"description": "Utilizaremos como empaquetador y transpilador:",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server",
"build": "webpack",
"serve:dev": "webpack --mode 'development' && npx serve dist -s",
"test": "cypress open"
},
"standard": {
"ignore": [
"/api/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/silnose/c-react-advanced.git"
},
"keywords": [],
"author": "silnose",
"license": "ISC",
"bugs": {
"url": "https://github.com/silnose/c-react-advanced/issues"
},
"homepage": "https://github.com/silnose/c-react-advanced#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"apollo": "^2.31.0",
"babel-loader": "^8.1.0",
"cypress": "^5.3.0",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.5.0",
"standard": "^14.3.4",
"url-loader": "^4.1.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-pwa-manifest": "^4.2.0",
"workbox-webpack-plugin": "^5.1.4"
},
"dependencies": {
"@apollo/client": "^3.2.2",
"@apollo/react-components": "^4.0.0",
"@babel/polyfill": "^7.11.5",
"@reach/router": "^1.3.4",
"graphql": "^15.3.0",
"graphql-tag": "^2.11.0",
"intersection-observer": "^0.11.0",
"nprogress": "^0.2.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-icons": "^3.11.0",
"react-spinner-material": "^1.3.1",
"styled-components": "^5.2.0"
}
}