-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.02 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.02 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
{
"name": "Biopolyarka-web-app",
"version": "1.0.0",
"license": "GPL-3.0",
"description": "Web application for Biopolyarka - online mini store of handmade jewelry",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"codegen": "contentful-typescript-codegen --output @types/generated/contentful.d.ts",
"lint": "next lint",
"prepare": "husky install",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test all": "npm run check-fromat && npm run check-lint && npm run check-types && npm run build"
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^15.6.2",
"@emotion/react": "^11.5.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.5",
"@mui/material": "^5.0.6",
"@sendgrid/mail": "^7.6.0",
"contentful": "^9.1.4",
"next": "^12.0.1",
"notistack": "^2.0.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-number-format": "^4.8.0",
"react-slick": "^0.28.1",
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.3.0",
"@emotion/eslint-plugin": "^11.5.0",
"@react-hook/media-query": "^1.1.1",
"@types/node": "16.11.6",
"@types/react": "17.0.33",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"@types/react-slick": "^0.23.7",
"contentful-management": "^7.45.2",
"contentful-typescript-codegen": "^3.2.3",
"dotenv": "^10.0.0",
"eslint": "<8.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "12.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.26.1",
"husky": "^7.0.0",
"lint-staged": ">=10",
"prettier": "^2.4.1",
"typescript": "4.4.4"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}