-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.55 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
{
"name": "search-pokemon",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "webpack serve",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "yarn test -- --watch",
"test:staged": "yarn test -- --findRelatedTests",
"test:ci": "yarn test -- --coverage"
},
"author": "Fernando Linhares <fernandolinhares1920@globo.com>",
"license": "MIT",
"devDependencies": {
"@testing-library/react": "^11.2.2",
"@types/axios": "^0.14.0",
"@types/faker": "^5.1.5",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "3",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"eslint": "7",
"eslint-config-standard-with-typescript": "19.0.1",
"eslint-plugin-import": "2",
"eslint-plugin-node": "11",
"eslint-plugin-promise": "4",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-standard": "4",
"faker": "^5.1.0",
"git-commit-msg-linter": "^3.0.0",
"husky": "4.3.0",
"identity-obj-proxy": "3.0.0",
"jest": "26.6.3",
"lint-staged": "10.5.1",
"node-sass": "^5.0.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"ts-jest": "26.4.4",
"ts-loader": "^8.0.12",
"typescript": "4.0.5",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@material-ui/core": "^4.11.2",
"axios": "^0.21.0",
"react": "17.0.1",
"react-dom": "17.0.1"
}
}