-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
65 lines (65 loc) · 1.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
{
"name": "near.monorepo",
"version": "1.0.0",
"description": "Near Contract and React Monorepo",
"private": true,
"scripts": {
"postinstall": "yarn husky install",
"front": "yarn workspace @near/front",
"contracts": "yarn workspace @near/contracts",
"circuits": "yarn workspace circuits",
"contract_libraries": "yarn workspace @near/contract_libraries",
"subgraph": "yarn workspace @near/subgraph",
"sdk": "yarn workspace hideyourcash-sdk",
"denylist": "yarn workspace denylist-bot",
"relayer": "yarn workspace relayer"
},
"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"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"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"
}
}