-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.9 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.9 KB
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
{
"name": "phi",
"version": "1.6.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --ci",
"test:coverage": "jest --ci --coverage --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robin-thomas/phi.git"
},
"keywords": [],
"author": "Robin Thomas <robinthomas2591@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/robin-thomas/phi/issues"
},
"homepage": "https://github.com/robin-thomas/phi#readme",
"dependencies": {
"@ceramicnetwork/http-client": "^1.5.7",
"@ceramicnetwork/stream-caip10-link": "^1.2.9",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@ethersproject/experimental": "^5.5.0",
"@mui/icons-material": "^5.4.1",
"@mui/material": "^5.4.1",
"@mui/styles": "^5.4.1",
"@self.id/web": "^0.2.0",
"@textile/hub": "^6.3.2",
"bnc-onboard": "^1.37.2",
"date-fns": "^2.28.0",
"emoji-picker-react": "^3.5.0",
"ethers": "^5.5.4",
"formik": "^2.2.9",
"lru-cache": "^6.0.0",
"next": "^12.0.10",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"simplebar-react": "^2.3.6",
"smile2emoji": "^2.6.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"babel-jest": "^27.5.1",
"dotenv": "^16.0.0",
"eslint": "^8.9.0",
"eslint-config-next": "12.1.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --write",
"eslint --fix src/",
"npm run test"
]
}
}