-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.35 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
71
72
73
74
{
"name": "desafio-frontend",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "webpack serve",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"chromatic": "chromatic --project-token CHROMATIC_PROJECT_TOKEN --exit-zero-on-changes",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "yarn test -- --watch",
"test:staged": "yarn test -- --findRelatedTests",
"test:ci": "yarn test -- --coverage",
"test:coveralls": "yarn test:ci && coveralls < coverage/lcov.info",
"check": "yarn-check -u -s",
"cypress": "cypress open"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@storybook/addon-actions": "^6.1.21",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-links": "^6.1.21",
"@storybook/react": "^6.1.21",
"@testing-library/react": "^11.2.5",
"@types/faker": "^5.1.7",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.34",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"babel-loader": "^8.2.2",
"chromatic": "^5.7.0",
"clean-webpack-plugin": "^3.0.0",
"coveralls": "^3.1.0",
"css-loader": "^5.1.2",
"cypress": "^6.8.0",
"eslint": "^7.22.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-standard": "^5.0.0",
"faker": "^5.4.0",
"git-commit-msg-linter": "^3.0.0",
"husky": "4.3.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-localstorage-mock": "^2.4.8",
"lint-staged": "^10.5.4",
"storybook-react-router": "^1.0.8",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.3",
"ts-loader": "^8.0.18",
"typescript": "^4.2.3",
"webpack": "^5.25.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"axios": "^0.21.1",
"react": "^17.0.1",
"react-currency-format": "^1.0.0",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-saga": "^1.1.3"
}
}