-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.97 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
{
"name": "clean-playando",
"version": "1.0.0",
"main": "index.js",
"author": "Igor Atilar <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write src/**/*.{ts,tsx} --config ./.prettierrc",
"test": "jest --passWithNoTests",
"test:watch": "yarn test --watch",
"test:staged": "yarn test --onlyChanged",
"test:ci": "yarn test --coverage",
"build": "webpack",
"postinstall": "husky install",
"dev": "webpack-dev-server --open"
},
"dependencies": {
"@faker-js/faker": "^7.3.0",
"@reduxjs/toolkit": "^1.8.4",
"axios": "^0.27.2",
"dotenv-webpack": "^8.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-player": "^2.10.1",
"react-redux": "^8.0.2",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@svgr/webpack": "^6.3.1",
"@testing-library/dom": "^8.16.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/jest": "^28.1.4",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"husky": "^8.0.1",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"jest-transformer-svg": "^2.0.0",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
}
}