-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.64 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
{
"name": "ui-colors",
"version": "0.1.0",
"private": true,
"license": "MIT",
"author": {
"name": "Aleksandr Shchilkin",
"email": "shchilkin@gmail.com",
"url": "https://github.com/shchilkin"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"prepare": "husky install"
},
"lint-staged": {
"**/*.+(ts|tsx)": [
"eslint --fix",
"tsc-files --noEmit --pretty"
],
"**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
],
"*.js": "eslint --cache --fix"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/material": "^5.8.4",
"@reduxjs/toolkit": "^1.8.3",
"next": "12.1.6",
"next-redux-wrapper": "^7.0.5",
"notistack": "^2.0.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.0.2",
"redux": "^4.2.0"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"eslint": "8.18.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^28.1.2",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"ts-jest": "^28.0.5",
"tsc-files": "^1.1.3",
"typescript": "4.7.4"
}
}