-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.93 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": "rick-and-morty-app",
"version": "1.0.0",
"main": "./src/index.js",
"homepage": "https://christianrg3.github.io/rick-and-morty-app",
"repository": "git@github.com:christianrg3/rick-and-morty-app.git",
"author": "Christian Gonçalves <christiangoncalvesr@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "webpack serve --mode development",
"build": "webpack --mode production",
"test": "jest",
"cy:open": "cypress open",
"cy:run": "cypress run",
"ci": "start-server-and-test dev 8080 cy:run",
"predeploy": "yarn build",
"deploy": "gh-pages -d build"
},
"dependencies": {
"@apollo/react-hooks": "^4.0.0",
"gh-pages": "^3.1.0",
"graphql": "^15.5.0",
"graphql-tag": "^2.11.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@apollo/react-testing": "^4.0.0",
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.6.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"cypress": "^6.4.0",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.0.0",
"jest": "^26.6.3",
"jest-dom": "^4.0.0",
"prettier": "^2.2.1",
"start-server-and-test": "^1.12.0",
"style-loader": "^2.0.0",
"webpack": "^5.20.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}