generated from lemonadern/template-nextjs-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.74 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "next-js-template",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"build": "next build",
"dev": "next dev",
"format": "prettier --check ./src",
"format:fix": "yarn prettier --write ./src",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{ts,tsx}\"",
"sort-package-json": "sort-package-json",
"start": "next start",
"type-test": "tsc -p tsconfig.json",
"cm": "cz",
"prepare": "husky install",
"test": "jest --watchAll --coverage",
"test:e2e": "playwright test",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"next": "12.3.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@axe-core/react": "^4.4.4",
"@babel/core": "^7.19.3",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@commitlint/prompt": "^17.1.2",
"@playwright/test": "^1.26.1",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@swc/core": "^1.3.3",
"@swc/jest": "^0.2.22",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@tsconfig/strictest": "^1.0.2",
"@types/jest": "^29.0.3",
"@types/node": "18.7.21",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"autoprefixer": "^10.4.12",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.24.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-no-relative-import-paths": "^1.4.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-storybook": "^0.6.4",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"lint-staged": "^13.0.3",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"sort-package-json": "^1.57.0",
"storybook-addon-swc": "^1.1.8",
"tailwindcss": "^3.1.8",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "4.8.3",
"util": "^0.12.4"
},
"engines": {
"npm": "Use 'yarn' as the package manager for this project. Not 'npm'."
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"webpack": "^5.64.4"
}
}