-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.13 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
{
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "dotenv -c -- turbo run dev",
"dev:contact-center": "dotenv -c -- turbo run dev --filter='./contact-center/*' --filter=setup-project-webhooks",
"dev:multichannel-app": "dotenv -c -- turbo run dev --filter='./multichannel-app/*' --filter=setup-project-webhooks",
"db:start": "turbo run db:start",
"db:stop": "turbo run db:stop",
"db:reset": "turbo run db:reset",
"lint": "turbo run lint",
"deploy": "turbo run deploy",
"list": "nr",
"tunnel": "dotenv -- node packages/tunnel/index.js"
},
"devDependencies": {
"@antfu/ni": "^0.21.8",
"dotenv-cli": "^7.2.1",
"eslint": "^8.44.0",
"eslint-config-custom": "*",
"prettier": "^2.5.1",
"tailwindcss": "^3.3.2",
"turbo": "^1.10.1",
"typescript": "^4.5.3"
},
"name": "web",
"packageManager": "npm@8.19.3",
"workspaces": [
"contact-center/*",
"multichannel-app/*",
"packages/*",
"scripts/*"
],
"dependencies": {
"@vonage/client-sdk": "1.4.0",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.23",
"ts-pattern": "^4.3.0"
}
}