-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.88 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.88 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "3d-maps",
"version": "1.0.0",
"description": "The demo project to work with WebGL",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open --hot --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "eslint ./src --ext .tsx,.ts",
"lint:fix": "eslint ./src --ext .tsx,.ts --fix",
"prepare": "husky install",
"test": "jest",
"test:coverage": "jest --coverage",
"test:e2e": "start-server-and-test start http://localhost:8080 cypress",
"cypress": "cypress open --config-file src/shared/config/testing/cypress.config.ts --e2e --browser chrome",
"detect-circle-dependencies": "npx dpdm --no-warning --no-tree ./src/index.tsx"
},
"keywords": [],
"author": "Aleh Yablonski",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.6",
"@reduxjs/toolkit": "^1.9.1",
"@sentry/react": "^7.34.0",
"@sentry/tracing": "^7.34.0",
"@testing-library/user-event": "^14.4.3",
"@types/react-redux": "^7.1.25",
"axios": "^1.3.4",
"compose-function": "^3.0.3",
"dotenv": "^16.0.3",
"formik": "^2.2.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.8.0",
"react-router-redux": "^4.0.8",
"react-spotify-web-playback": "^0.13.2",
"react-spotify-web-playback-sdk": "^3.0.1",
"spotify-web-api-node": "^5.0.2",
"yup": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-modules-commonjs": "7.4.4",
"@babel/plugin-transform-react-constant-elements": "7.2.0",
"@babel/plugin-transform-react-inline-elements": "7.2.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@feature-sliced/eslint-config": "^0.1.0-beta.6",
"@jest/globals": "^29.5.0",
"@testing-library/cypress": "^9.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/compose-function": "^0.0.30",
"@types/jest": "^29.4.0",
"@types/node": "^18.15.1",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-router-redux": "^5.0.21",
"@types/spotify-web-api-node": "^5.0.7",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"babel-plugin-dynamic-import-node": "^2.3.3",
"css-loader": "^6.7.3",
"cypress": "^12.7.0",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-boundaries": "^3.1.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-typescript": "^0.14.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"node-sass": "^8.0.0",
"prettier": "^2.8.3",
"sass-loader": "^13.2.0",
"start-server-and-test": "^2.0.0",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
}
}