-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.35 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
65
66
67
68
69
70
71
72
73
74
{
"name": "@vitrozsival/nextjs-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "NODE_ENV=production next build",
"cz": "cz",
"dev": "next dev",
"eslint": "eslint --cache --ext js,ts,tsx .",
"eslint:fix": "pnpm run eslint --fix",
"fix": "run-s ts eslint:fix stylelint:fix prettier:fix",
"prepare": "is-ci || husky install",
"prettier": "prettier --check \"./**/*.{json,md,yml}\"",
"prettier:fix": "pnpm run prettier --write",
"stylelint": "stylelint --cache \"./**/*.{ts,tsx}\"",
"stylelint:fix": "pnpm run stylelint --fix",
"qa": "run-s ts eslint stylelint prettier",
"start": "NODE_ENV=production next start",
"ts": "tsc --project tsconfig.json"
},
"dependencies": {
"@emotion/cache": "11.10.7",
"@emotion/react": "11.10.6",
"@emotion/server": "11.10.0",
"@emotion/styled": "11.10.6",
"next": "13.3.1",
"nprogress": "0.2.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@babel/core": "7.21.4",
"@commitlint/cli": "17.6.1",
"@commitlint/config-conventional": "17.6.1",
"@emotion/babel-plugin": "11.10.6",
"@emotion/eslint-plugin": "11.10.0",
"@types/node": "18.16.1",
"@types/nprogress": "0.2.0",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"@typescript-eslint/eslint-plugin": "5.59.1",
"@typescript-eslint/parser": "5.59.1",
"commitizen": "4.3.0",
"eslint": "8.39.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-next": "13.3.1",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-formatjs": "4.10.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-unicorn": "46.0.0",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "8.0.3",
"is-ci": "3.0.1",
"lint-staged": "13.2.1",
"npm-run-all": "4.1.5",
"postcss": "8.4.23",
"postcss-styled-syntax": "0.4.0",
"prettier": "2.8.8",
"prettier-plugin-package": "1.3.0",
"stylelint": "15.6.0",
"stylelint-config-recommended": "12.0.0",
"stylelint-order": "6.0.3",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18.16.0"
},
"packageManager": "[email protected]"
}