-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
78 lines (78 loc) · 2.59 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
{
"private": true,
"scripts": {
"clean:fable": "dotnet fable clean ./web/src --yes",
"fable": "dotnet fable ./web/src --noRestore --sourceMaps --configuration DEBUG",
"fable:check": "dotnet femto",
"dev:fable": "dotnet fable watch ./web/src --noRestore --sourceMaps --configuration DEBUG --runFast vite serve ./web/src --config ./vite.config.js",
"dev:start": "vite serve ./web/src --config ./vite.config.js",
"test": "vitest --watch ./web/src --config ./vite.config.js",
"build": "dotnet fable ./web/src --noCache --configuration RELEASE && vite build ./web/src -mode production --config ./vite.config.js",
"prettier": "prettier --write './web/src/**/*.{ts,tsx,json,yml,js,jsx,mdx}'",
"storybook": "start-storybook ./web/src -p 6006",
"build-storybook": "build-storybook ./web/src"
},
"dependencies": {
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-vite": "^0.2.4",
"@storybook/core-common": "^6.5.13",
"@storybook/node-logger": "^6.5.13",
"@storybook/react": "^6.5.13",
"@storybook/source-loader": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"@vitejs/plugin-react": "^2.2.0",
"aria-query": "^5.1.1",
"autoprefixer": "^10.4.12",
"babel-loader": "^8.2.5",
"buffer": "^6.0.3",
"dom-accessibility-api": "^0.5.14",
"esbuild": "^0.15.12",
"husky": "^8.0.1",
"jsdom": "^20.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.14",
"postcss-custom-properties": "^12.1.10",
"postcss-import": "^15.0.0",
"postcss-url": "^10.1.3",
"prettier": "^2.7.1",
"remotedev": "0.2.9",
"tailwindcss": "^3.2.1",
"daisyui": "^2.33.0",
"typescript": "^4.8.4",
"vite": "^3.2.0",
"vitest": "^0.24.3"
},
"browserslist": [
"defaults and supports es6-module and supports es6-module-dynamic-import",
"not opera > 0",
"not samsung > 0",
"not and_qq > 0"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"**/*.{ts,tsx,json,yml,js,jsx,mdx}": [
"prettier --write"
],
"**/*.fs": [
"dotnet fantomas"
]
}
}