-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.04 KB
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
{
"name": "live-chat-playground",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "concurrently \"npm run next-dev\" \"npm run ws-server\"",
"next-dev": "next dev",
"ws-server": "node server.js",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test:unit": "wdio config/wdio.chrome.conf.ts",
"test:e2e": "wdio config/wdio.multiremote.conf.ts"
},
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"concurrently": "^9.0.0",
"express": "^4.20.0",
"next": "14.2.9",
"react": "^18",
"react-dom": "^18",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/react": "19.0.2",
"@wdio/cli": "^9.5.0",
"@wdio/local-runner": "^9.5.0",
"@wdio/mocha-framework": "^9.5.0",
"@wdio/spec-reporter": "^9.5.0",
"eslint": "^8",
"eslint-config-next": "14.2.9",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"wdio-wait-for": "^3.0.11"
}
}