This repository has been archived by the owner on May 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.7 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
90
91
92
93
94
95
{
"name": "@hotepp/next-story",
"version": "1.2.0",
"description": "Create Next App coupled with Storybook and extended with linters, styles adjustments, pre-commit feature and more",
"repository": {
"type": "git",
"url": "https://github.com/hotepp/next-story.git"
},
"keywords": [
"create-next-app",
"storybook",
"next-story",
"cna",
"sb",
"ns",
"react",
"next",
"nextjs",
"builder",
"task runner",
"ui",
"component explorer"
],
"author": "Vlad Gerasimovich <[email protected]>",
"license": "ISC",
"bugs": "https://github.com/hotepp/next-story/issues",
"dependencies": {
"bulma": "^0.9.4",
"next": "12.2.0",
"normalize.css": "^8.0.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"babel-loader": "^8.2.5",
"conventional-changelog-cli": "^2.2.2",
"css-loader": "^6.7.1",
"eslint": "^8.19.0",
"eslint-config-next": "^12.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.5.13",
"eslint-webpack-plugin": "^3.2.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss-loader": "^7.0.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"stylelint": "^14.9.1",
"stylelint-config-standard-scss": "^4.0.0",
"stylelint-order": "^5.0.0",
"stylelint-webpack-plugin": "^3.3.0",
"typescript": "^4.7.4",
"webpack": "^5.73.0"
},
"scripts": {
"build": "next build",
"build:sb": "build-storybook",
"dev": "next",
"lint": "lint-staged",
"prepare": "husky install",
"sb": "start-storybook -p 4000 --no-open",
"start": "next start",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"not dead"
],
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"pretty-quick --pattern './src/**/*.{js,jsx,ts,tsx}'",
"eslint './src/**/*.{js,jsx,ts,tsx}' --fix"
],
"src/**/*.{css,sass,scss}": [
"pretty-quick --pattern './src/**/*.{css,sass,scss}'",
"stylelint './src/**/*.{css,sass,scss}' --fix"
]
}
}