-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.51 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
{
"name": "daily-testrtc-client",
"version": "1.0.0",
"description": "A client embedding Daily Prebuilt, optimized for TestRTC tests",
"scripts": {
"build": "webpack --mode=production",
"dev": "sh ./dev.sh",
"netlify-build": "npm run netlify-config-redirect && npm run build",
"netlify-config-redirect": "sed -i.bak s/DAILY_API_KEY_PLACEHOLDER/${DAILY_API_KEY}/g netlify.toml",
"check": "eslint src/",
"fix": "eslint src/ --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daily-co/testrtc-client.git"
},
"author": "Liza Shulyayeva",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/daily-co/testrtc-client/issues"
},
"homepage": "https://github.com/daily-co/testrtc-client#readme",
"devDependencies": {
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"file-loader": "^6.2.0",
"http-server": "^14.1.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"netlify-cli": "^10.10.2",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.3",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@daily-co/daily-js": "^0.28.0"
}
}