This repository has been archived by the owner on Apr 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.51 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
{
"name": "@hotepp/create-next-app-extended",
"version": "3.0.0",
"description": "An extended version of Create Next App with linters, styles adjustment, pre-commit and more",
"repository": {
"type": "git",
"url": "https://github.com/hotepp/create-next-app-extended.git"
},
"keywords": [
"create-next-app",
"create-next-app-extended",
"cna",
"cnax",
"react",
"next",
"nextjs",
"builder",
"task runner"
],
"author": "Vlad Gerasimovich <hotepp@pm.me>",
"license": "MIT",
"bugs": "https://github.com/hotepp/create-next-app-extended/issues",
"dependencies": {
"bulma": "^0.9.3",
"next": "12.0.7",
"normalize.css": "^8.0.1",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/builder-webpack5": "^6.4.9",
"@storybook/manager-webpack5": "^6.4.9",
"@storybook/react": "^6.4.9",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"babel-loader": "^8.2.3",
"conventional-changelog-cli": "^2.2.2",
"css-loader": "^6.5.1",
"eslint": "^8.6.0",
"eslint-config-next": "^12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-webpack-plugin": "^3.1.1",
"husky": "^7.0.4",
"lint-staged": "^12.1.5",
"postcss-loader": "^6.2.1",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"sass": "^1.45.2",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"stylelint": "^14.2.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"stylelint-webpack-plugin": "^3.1.0",
"typescript": "^4.5.4",
"webpack": "^5.65.0"
},
"scripts": {
"build": "next build",
"build:sb": "build-storybook",
"dev": "next",
"lint": "lint-staged",
"prepare": "husky install",
"sb": "start-storybook -p 4000",
"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}": [
"pretty-quick --pattern './src/**/*.{js,jsx}'",
"eslint './src/**/*.{js,jsx}' --fix"
],
"src/**/*.{css,sass,scss}": [
"pretty-quick --pattern './src/**/*.{css,sass,scss}'",
"stylelint './src/**/*.{css,sass,scss}' --fix"
]
}
}