forked from hoprnet/myne-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.54 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
{
"name": "myne-chat",
"version": "0.2.0-alpha.0",
"scripts": {
"commit": "cz",
"dev": "MYNE_CHAT_GIT_HASH=$(git rev-parse --short HEAD) next dev -p 8080",
"build": "MYNE_CHAT_GIT_HASH=$(git rev-parse --short HEAD) next build",
"export": "next export",
"start": "next start -p 8080",
"lint": "next lint",
"format": "prettier --write --ignore-path .gitignore .",
"mocks": "node ./mocks/index.js",
"test": "jest --watch",
"test:ci": "jest --ci",
"test:coverage": "jest --coverage",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test:e2e": "playwright test",
"chromatic": "chromatic --exit-zero-on-changes"
},
"dependencies": {
"@ethersproject/bytes": "^5.5.0",
"ethers": "^5.6.9",
"grommet": "^2.19.1",
"grommet-icons": "^4.7.0",
"immer": "^9.0.7",
"lodash": "^4.17.21",
"next": "12.1.0",
"peer-id": "^0.15.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-measure": "^2.5.2",
"styled-components": "^5.3.3",
"use-immer": "^0.6.0"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@hoprnet/hopr-utils": "1.84.0-next.24",
"@playwright/test": "^1.18.0",
"@storybook/addon-actions": "^6.4.14",
"@storybook/addon-essentials": "^6.4.14",
"@storybook/addon-links": "^6.4.14",
"@storybook/builder-webpack5": "^6.4.14",
"@storybook/manager-webpack5": "^6.4.14",
"@storybook/react": "^6.4.14",
"@testing-library/dom": "^8.11.2",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/js-cookie": "^3.0.1",
"@types/lodash": "^4.14.177",
"@types/node": "16.11.11",
"@types/react": "17.0.37",
"@types/react-measure": "^2.0.8",
"@types/styled-components": "^5.1.15",
"@types/ws": "^8.2.1",
"babel-loader": "^8.2.3",
"babel-plugin-styled-components": "^2.0.2",
"body-parser": "^1.19.0",
"chromatic": "^6.4.1",
"commitizen": "^4.2.4",
"cors": "^2.8.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "<8.0.0",
"eslint-config-next": "12.0.4",
"eslint-config-prettier": "^8.3.0",
"express": "^4.17.1",
"isomorphic-fetch": "^3.0.0",
"jest": "^27.4.4",
"jest-websocket-mock": "^2.3.0",
"msw": "^0.36.7",
"prettier": "2.5.0",
"typescript": "4.5.2",
"webpack": "5",
"ws": "^8.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}