-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
84 lines (84 loc) · 2.17 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
{
"name": "yomo-metaverse-workplace-nextjs",
"version": "0.1.0",
"description": "Open-source Virtual HQ implementation by Geo-distributed System tech stacks",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"lint": "next lint",
"lint:types": "tsc -p . --noEmit",
"test": "jest --detectOpenHandles"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run lint:types"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid",
"htmlWhitespaceSensitivity": "css"
},
"keywords": [
"vhq",
"yomo",
"geodistributedsystem"
],
"author": "YoMo",
"license": "MIT",
"dependencies": {
"agora-access-token": "^2.0.4",
"agora-rtc-sdk-ng": "^4.7.1",
"autoprefixer": "^10.3.7",
"axios": "^0.22.0",
"classnames": "^2.3.1",
"jsc8": "^0.16.3",
"next": "^12.0.1",
"next-auth": "^4.2.1",
"react": "^17.0.2",
"react-cookie-consent": "^8.0.1",
"react-dom": "^17.0.2",
"recoil": "^0.4.1",
"rxjs": "^7.3.0",
"socket.io-client": "2.4.0",
"tailwindcss": "^2.2.16"
},
"devDependencies": {
"@next/env": "^12.0.3",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/node": "^16.11.6",
"@types/react": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"babel-jest": "^27.3.1",
"babel-plugin-transform-dynamic-import": "^2.1.0",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"jest-next-dynamic": "^1.0.1",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"react-test-renderer": "^17.0.2",
"socket.io-mock": "^1.3.2",
"typescript": "^4.4.4"
}
}