forked from alexeagleson/nextjs-fullstack-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.38 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
{
"name": "nextjs-starter",
"author": "YOUR_NAME_HERE",
"description": "A fullstack template for a NextJs App: TypeScript, Tailwind, Storybook, Prettier, Husky hooks, and more",
"version": "0.1.0",
"private": true,
"license": "MIT",
"homepage": "YOUR_REPOSITORY_HERE",
"engines": {
"node": ">=14.0.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
},
"scripts": {
"dev:only": "next dev",
"dev": "concurrently --restart-tries 10 --raw \"yarn:dev:only\" \"yarn:format:watch\"",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"lint": "next lint",
"format": "yarn pretty-quick",
"format:watch": "sh scripts/format-and-lint-on-change.sh",
"prettier": "prettier --write .",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"gen": "npx generate-react-cli component"
},
"dependencies": {
"next": "^13.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/node": "17.0.23",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"autoprefixer": "^10.4.4",
"babel-loader": "^8.2.4",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"eslint": "8.12.0",
"eslint-config-next": "^13.2.3",
"eslint-plugin-storybook": "^0.6.11",
"generate-react-cli": "^8.2.0",
"husky": "^7.0.4",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"next-auth": "^4.3.1",
"onchange": "^7.1.0",
"postcss": "^8.4.12",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"storybook-addon-next-router": "^4.0.2",
"storybook-css-modules-preset": "^1.1.1",
"tailwindcss": "^3.0.23",
"typescript": "4.6.3"
},
"resolutions": {
"webpack": "^5"
}
}