-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.6 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
{
"name": "Tailbreeze",
"version": "1.0.0",
"main": "index.js",
"author": "James Dinnes",
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"description": "A simple, lightweight, and fast static site generator.",
"workspaces": [
"packages/*"
],
"dependencies": {
"@babel/core": "^7.19.1",
"@eslint/eslintrc": "^1.3.2",
"@mdx-js/react": "^1.6.22",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-docs": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "^5.37.0",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "latest",
"eslint-plugin-import": "^2.26.0",
"postcss-scss": "^4.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.54.9",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"stylelint": "^14.12.0",
"stylelint-config-css-modules": "^4.1.0",
"stylelint-config-standard": "^28.0.0",
"typescript": "^4.8.3"
},
"scripts": {
"dev": "yarn workspace @tailbreeze/styles build:watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
}
}