-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.55 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
{
"name": "pronounce-and-speech",
"version": "0.0.1",
"description": "Pronounce and Speech Text - Enter Word and Get the Pronunciation and Speech Text.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c --bundleConfigAsCjs",
"dev": "rollup -c -w --bundleConfigAsCjs",
"start": "http-server ./public -c-1 --p 3001",
"lint": "eslint . --ext .js --cache",
"lintfix": "eslint . --ext .js --fix",
"css": "tailwindcss -m -i ./styles/tailwind.css -o public/build/app.css",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,html}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/mskian/pronounce-and-speech.git"
},
"keywords": [
"Pronounce",
"speech"
],
"author": "Santhosh Veer",
"license": "MIT",
"bugs": {
"url": "https://github.com/mskian/pronounce-and-speech/issues"
},
"homepage": "https://github.com/mskian/pronounce-and-speech#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@tailwindcss/forms": "^0.5.9",
"autoprefixer": "^10.4.20",
"eslint": "^9.14.0",
"http-server": "^14.1.1",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"rollup": "^4.24.4",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-terser": "^7.0.2",
"tailwindcss": "^3.4.14"
},
"dependencies": {
"compromise": "^14.14.2",
"compromise-speech": "^0.1.1",
"sanitize-html": "^2.13.1"
}
}