-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.52 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": "soundations",
"version": "1.0.0",
"description": "Sound recommendations project.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/spris-dev/soundations.git"
},
"dependencies": {
"@preact/signals": "1.1.2",
"lodash-es": "4.17.21",
"preact": "10.11.2"
},
"devDependencies": {
"@preact/preset-vite": "2.4.0",
"@types/lodash-es": "4.17.6",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"autoprefixer": "10.4.13",
"eslint": "8.28.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.5.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"husky": "8.0.0",
"lint-staged": "13.0.3",
"openapi-typescript-codegen": "0.23.0",
"postcss": "8.4.19",
"pyright": "1.1.275",
"tailwindcss": "3.2.4",
"typescript": "4.9.3",
"vite": "3.2.3",
"vitest": "0.25.3"
},
"scripts": {
"prepare": "husky install",
"precommit": "lint-staged",
"client:dev": "vite snd-client",
"client:build": "tsc -p snd-client && vite build snd-client",
"client:preview": "vite preview snd-client",
"client:test": "vitest --root snd-client --run",
"client:lint": "eslint --max-warnings 0 './snd-client'",
"client:lint:fix": "eslint --fix --max-warnings 0"
},
"lint-staged": {
"*.py": "poetry run black",
"*.{ts,tsx,js,jsx}": "npm run client:lint:fix"
}
}