-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 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
64
65
66
67
68
69
70
{
"name": "rick-and-morty-consumer",
"version": "1.0.0",
"description": "A React application that consumes Rick And Morty API.",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"start": "webpack-cli serve --open --mode development",
"test": "node ./node_modules/jest/bin/jest.js --passWithNoTests --runInBand --no-cache --logHeapUsage",
"test:unit": "npm test -- --watch -c jest-unit.config.js",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage",
"deploy": "npm run build && gh-pages -d public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zoruka/rick-and-morty-consumer.git"
},
"keywords": [
"react",
"reactjs",
"api",
"consumer",
"rickandmorty",
"rick",
"morty"
],
"author": "Felipe Mendes",
"license": "ISC",
"bugs": {
"url": "https://github.com/zoruka/rick-and-morty-consumer/issues"
},
"homepage": "https://github.com/zoruka/rick-and-morty-consumer#readme",
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.0",
"@mui/material": "^5.0.0",
"axios": "^0.21.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.5",
"react-router-dom": "^5.3.0",
"redux": "^4.1.1"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9",
"@types/react-redux": "^7.1.18",
"@types/react-router-dom": "^5.1.9",
"@types/redux": "^3.6.0",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^3.2.3",
"jest": "^27.2.0",
"nock": "^13.1.3",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.1"
}
}