generated from MetaMask/template-snap-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.22 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
{
"name": "root",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"postinstall": "yarn husky install",
"front": "yarn workspace front",
"agents": "yarn workspace agents",
"circuits": "yarn workspace circuits"
},
"engines": {
"yarn": ">=1.22.0 <2.0.0",
"node": ">=17.5.0"
},
"lint-staged": {
"{ts,tsx}": [
"eslint --fix"
],
"*.{js,jsx}": [
"eslint --fix"
],
"*.rs": [
"sh ./format_rust.sh"
]
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/tailwindcss",
"**/tailwindcss/**",
"**/postcss",
"**/postcss/**",
"**/autoprefixer",
"**/autoprefixer/**"
]
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@types/jest": "^27.5.0",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"cypress": "^10.6.0",
"eslint": "^8.15.0",
"eslint-plugin-react": "^7.29.4",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"nodemon": "^2.0.15",
"prettier": "^2.8.4"
},
"dependencies": {
"@walletconnect/modal": "^2.6.2"
}
}