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
/
package.json
90 lines (90 loc) · 2.69 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
{
"name": "@hotepp/thoughts",
"version": "2.0.0",
"description": "Thoughts",
"repository": {
"type": "git",
"url": "https://github.com/hotepp/thoughts.git"
},
"keywords": [
"thoughts"
],
"author": "Vlad Gerasimovich <hotepp@pm.me>",
"license": "ISC",
"bugs": "https://github.com/hotepp/thoughts/issues",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"bulma": "^0.9.3",
"clsx": "^1.1.1",
"date-fns": "^2.28.0",
"nanoid": "^3.3.3",
"next": "12.1.5",
"normalize.css": "^8.0.1",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-interactions": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/builder-webpack5": "^6.4.22",
"@storybook/manager-webpack5": "^6.4.22",
"@storybook/react": "^6.4.22",
"@storybook/testing-library": "^0.0.9",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"babel-loader": "^8.2.4",
"conventional-changelog-cli": "^2.2.2",
"css-loader": "^6.7.1",
"eslint": "^8.13.0",
"eslint-config-next": "^12.1.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-storybook": "^0.5.10",
"eslint-webpack-plugin": "^3.1.1",
"husky": "^7.0.4",
"lint-staged": "^12.3.8",
"postcss-loader": "^6.2.1",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"sass": "^1.50.0",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"stylelint": "^14.7.1",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"stylelint-webpack-plugin": "^3.2.0",
"typescript": "^4.6.3",
"webpack": "^5.72.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"
]
}
}