-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "scrum-poker-online",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --runInBand"
},
"dependencies": {
"base64id": "^2.0.0",
"clsx": "^1.1.1",
"content-type": "^1.0.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"mongoose": "^5.12.11",
"next": "10.2.2",
"pusher": "^5.0.0",
"pusher-js": "^7.0.3",
"raw-body": "^2.4.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-qr-code": "^2.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@types/express": "^4.17.11",
"@types/jest": "^27.0.0",
"@types/react": "^17.0.6",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"babel-jest": "^27.0.1",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.1",
"prettier": "^2.3.0",
"ts-jest": "^27.0.4",
"ts-node": "^10.0.0",
"typescript": "^4.2.4"
}
}