-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
61 lines (61 loc) · 2 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
{
"name": "fully-featured-scalable-chat-app",
"version": "1.0.0",
"description": "a fully featured scalable chat app",
"main": "index.js",
"scripts": {
"init": "npm clean-install && cd api && npm clean-install && cd .. && cd event-integrations && npm clean-install",
"start": "run-p dev:api dev:server dev:event-integrations",
"build": "npx vite build",
"test": "jest --runInBand && npm run test:api",
"dev:server": "npx vite serve",
"dev:api": "npm run start --prefix api",
"dev:event-integrations": "npm run start --prefix event-integrations",
"test:api": "npm run test --prefix api",
"lint": "npx eslint . --ext .js,.jsx,.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/ably-labs/fully-featured-scalable-chat-app"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ably-labs/fully-featured-scalable-chat-app/issues"
},
"homepage": "https://github.com/ably-labs/fully-featured-scalable-chat-app#readme",
"devDependencies": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vitejs/plugin-react": "^1.0.7",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"http2-proxy": "^5.0.53",
"jest": "^27.4.7",
"jest-cli": "^27.3.0",
"jsesc": "^3.0.2",
"npm-run-all": "^4.1.5",
"prettier": "2.5.1",
"to-fast-properties": "^4.0.0",
"ts-jest": "^27.1.3",
"typescript": "^4.4.4",
"vite": "^2.6.4"
},
"dependencies": {
"@ably-labs/react-hooks": "^1.1.5",
"@auth0/auth0-spa-js": "^1.19.2",
"ansi-regex": "^5.0.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"tslib": "^2.3.1"
}
}