-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.19 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "RecipeApp",
"version": "1.0.0",
"author": "Guilherme Bauso",
"license": "ISC",
"scripts": {
"build:local": "webpack --mode production --env.ENVIRONMENT=local --config ./webpack.config.js",
"build:production": "webpack --mode production --env.ENVIRONMENT=local --config ./webpack.config.js",
"start:local": "webpack-dev-server --mode development --env.ENVIRONMENT=local --config ./webpack.config.js",
"test:unit": "jest --verbose",
"test:unit:coverage": "jest --verbose --coverage",
"test:unit:watch": "jest --watchAll --verbose --coverage",
"test:unit:update-snapshot": "jest --updateSnapshot",
"lint": "eslint src --max-warnings=0",
"lint:fix": "eslint src --max-warnings=0 --fix",
"e2e": "cd e2e && yarn start"
},
"dependencies": {
"@hot-loader/react-dom": "16.14.0",
"copy-webpack-plugin": "^6.1.1",
"core-js": "^3.8.1",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-hot-loader": "^4.13.0",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-toastify": "^7.0.3",
"redux": "^4.0.5",
"regenerator-runtime": "^0.13.7",
"style-loader": "^2.0.0",
"styled-components": "^5.2.1",
"typescript": "^4.1.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-arrow-functions": "^7.12.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/enzyme-to-json": "^1.5.4",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.12",
"@types/query-string": "^6.3.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.11",
"@types/react-router-dom": "^5.1.6",
"@types/styled-components": "^5.1.5",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"babel-plugin-module-resolver": "^4.0.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"dotenv": "^8.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.0.5",
"html-webpack-plugin": "^4.5.0",
"husky": "^5.1.3",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.0",
"jest-styled-components": "^7.0.3",
"lint-staged": "^10.5.4",
"prettier": "2.2.1",
"ts-jest": "^26.4.4",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.11.0"
},
"lint-staged": {
"src/**/*": [
"yarn lint:fix"
]
}
}