-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "fast-speech-to-text",
"version": "1.0.0",
"description": "Repo containing experiments/explorations/proofs-of-concept for fast speech to text and text to speech.",
"main": "index.js",
"type": "module",
"workspaces": [
"web",
"server"
],
"scripts": {
"start": "npm run start -w server",
"dev": "npm run dev --workspace=server & npm run dev --workspace=web",
"lint": "npm run lint --ws",
"test": "npm run test --ws",
"prepare": "npx husky",
"build": "npm run build -w web"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/fast-speech-to-text.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nearform/fast-speech-to-text/issues"
},
"homepage": "https://github.com/nearform/fast-speech-to-text#readme",
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix"
},
"dependencies": {
"react-hot-toast": "^2.4.1",
"react-select": "^5.8.1"
}
}