-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
{
"name": "planning-poker",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node server/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "next build",
"start": "NODE_ENV=production node server/index.js",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@svgr/webpack": "^5.5.0",
"buffer": "^6.0.3",
"global": "^4.4.0",
"joi": "^17.4.0",
"killable": "^1.0.1",
"material-ui-chip-input": "^1.1.0",
"material-ui-dropzone": "^3.5.0",
"next": "11.0.1",
"next-absolute-url": "^1.2.2",
"node-fetch": "^2.6.1",
"notistack": "^1.0.9",
"random-words": "^1.1.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-markdown": "^6.0.2",
"react-transition-group": "^4.4.2",
"reconnecting-websocket": "^4.4.0",
"remark-gfm": "^1.0.0",
"remove-markdown": "^0.3.0",
"swr": "^0.5.6",
"text-ellipsis": "^1.0.3",
"uuid": "^8.3.0",
"ws": "^7.5.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.5",
"eslint": "^7.29.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"jest": "^27.0.5",
"prettier": "^2.3.1",
"react-test-renderer": "^17.0.2"
}
}