-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 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
{
"name": "spb-frontend.ru",
"version": "2.0.0",
"main": "index.js",
"repository": "[email protected]:spb-frontend/spb-frontend.ru.git",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export -o ./dist",
"precommit": "lint-staged",
"prepare": "husky install",
"find-deadcode": "ts-prune",
"fixall": "eslint --fix",
"typecheck": "tsc --noEmit"
},
"browserslist": [
"defaults and supports es6-module",
">0.3%",
"last 2 versions",
"not dead",
"maintained node versions"
],
"dependencies": {
"classnames": "^2.3.1",
"contentful": "^10.3.1",
"isomorphic-fetch": "^3.0.0",
"next": "^13.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0"
},
"devDependencies": {
"@types/isomorphic-fetch": "^0.0.35",
"@types/node": "^17.0.17",
"@types/react": "^18.2.6",
"@typescript-eslint/eslint-plugin": ">=5.57.0",
"@typescript-eslint/parser": ">=5.57.0",
"autoprefixer": "^10.4.14",
"babel-eslint": "^10.1.0",
"eslint": ">=8.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.1",
"lint-staged": "^13.2.2",
"next-images": "^1.8.5",
"postcss": "^8.4.23",
"postcss-load-config": "^4.0.1",
"postcss-nested": "^6.0.1",
"prettier": "^2.8.8",
"ts-prune": "^0.10.3",
"typescript": "^5.0.4"
}
}