forked from Auralities/whspr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.23 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "whspr",
"version": "1.0.0",
"description": "audio based social media",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node-dev server/index.ts",
"index": "ts-node-dev server/algolia/algolia.ts",
"deleteIndex": "ts-node server/algolia/algoliadelete.ts",
"build": "webpack --config webpack.dev.js --mode development",
"build-prod": "webpack --config webpack.prod.js --mode production",
"reassignifneeded": "npx sequelize-cli db:drop && npx sequelize-cli db:create && npx sequelize-cli db:migrate && npx sequelize-cli db:seed:all --seeders-path seeders/",
"sync": "ts-node server/db/scripts/authAndSyncDb.ts",
"seed": "ts-node server/db/scripts/seeder-goofy.ts",
"resetDb": "ts-node server/db/scripts/resetDb.ts",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/axios": "^0.14.0",
"@types/bootstrap": "^5.2.10",
"@types/express-session": "^1.17.10",
"@types/google-cloud__text-to-speech": "^2.0.0",
"@types/multer": "^1.4.11",
"@types/node": "^20.10.5",
"@types/passport": "^1.0.16",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"eslint": "^8.56.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.4.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"html-webpack-plugin": "^5.5.4",
"mini-css-extract-plugin": "^2.7.6",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack-cli": "^5.1.4",
"workbox-webpack-plugin": "^7.0.0"
},
"dependencies": {
"@google-cloud/storage": "^7.7.0",
"@google-cloud/text-to-speech": "^5.0.1",
"agora-rtc-sdk-ng": "^4.20.0",
"algoliasearch": "^4.22.0",
"arg": "^5.0.2",
"axios": "^1.6.2",
"bootstrap": "^5.3.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"css-loader": "^6.8.1",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"elevenlabs-node": "^2.0.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"multer": "^1.4.5-lts.1",
"openai": "^4.24.0",
"p5": "^1.9.0",
"passport": "^0.7.0",
"passport-google-oauth2": "^0.2.0",
"peer": "^1.0.2",
"pg": "^8.11.3",
"postcss-loader": "^7.3.3",
"react": "^18.2.0",
"react-bootstrap": "^2.9.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.12.0",
"react-instantsearch": "^7.5.0",
"react-router-dom": "^6.21.0",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"search-insights": "^2.13.0",
"sequelize": "^6.35.1",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2",
"style-loader": "^3.3.3",
"tone": "^14.7.77",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tunajs": "^1.0.15",
"uuid": "^9.0.1",
"wavesurfer.js": "^7.5.1"
}
}