-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.01 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
{
"name": "SubtleConduit",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=16",
"pnpm": ">=7",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"install": "dotnet tool restore",
"build": "dotnet fable ./src/App -o ./build/client --run vite build",
"start": "dotnet fable watch ./src/App -s -o ./build/client --runFast vite --open"
},
"dependencies": {
},
"devDependencies": {
"husky": "8.0.3",
"lint-staged": "13.1.0",
"prettier": "2.8.3",
"tailwindcss-textshadow": "2.1.3",
"vite": "4.0.4",
"vite-plugin-windicss": "1.8.10",
"windicss": "3.5.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{ts,json,md,yml,yaml,js,mdx,tsx,jsx}": [
"prettier --write"
],
"src/**/*.fs": [
"dotnet fantomas ./src/**/*.fs"
]
},
"keywords": [],
"author": "Kai Ito",
"license": "MIT"
}