-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.96 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": "unchain-nfts",
"version": "1.0.0",
"description": "NFT contracts issued for provenance of completing UNCHAIN projects",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/unchain-tech/passport-nfts.git"
},
"bugs": {
"url": "https://github.com/unchain-tech/passport-nfts/issues"
},
"author": "neila <[email protected]> (https://github.com/neila/)",
"contributors": [
"neila <[email protected]> (https://github.com/neila/)",
"yk-saito <[email protected]> (https://github.com/yk-saito)"
],
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"prettier-plugin-solidity": "^1.1.2",
"simple-git-hooks": "^2.8.1"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"scripts": {
"contract": "yarn workspace contract",
"client": "yarn workspace client",
"client:dev": "cp -r ./packages/contract/typechain-types ./packages/client/types/typechain-types && yarn workspace client dev",
"prettier": "prettier --ignore-unknown --no-error-on-unmatched-pattern --ignore-path .prettierignore --write .",
"prettier:check": "prettier --ignore-unknown --no-error-on-unmatched-pattern --ignore-path .prettierignore --check .",
"lint": "eslint . && yarn contract solhint",
"lint:fix": "eslint --fix . && yarn contract solhint:fix",
"test": "yarn workspace contract test"
}
}