-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.25 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
{
"name": "nextjs-boilerplate",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,json,css}'",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"next": "12.0.3",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.3.12",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.2",
"@types/node": "16.11.6",
"@types/react": "17.0.34",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"autoprefixer": "^10.4.0",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.3",
"eslint": "7",
"eslint-config-next": "12.0.3",
"eslint-config-prettier": "^8.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"jest-watch-typeahead": "^1.0.0",
"postcss": "^8.3.11",
"prettier": "^2.4.1",
"tailwindcss": "^2.2.19",
"typescript": "4.4.4"
}
}