-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 2.26 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
{
"name": "audit-book",
"version": "0.1.0",
"description": "A book for all things related to smart contract auditing.",
"keywords": [],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/unchain-tech/audit-book.git"
},
"bugs": {
"url": "https://github.com/unchain-tech/audit-book/issues"
},
"homepage": "https://github.com/unchain-tech/audit-book#readme",
"contributors": [
"Haku <[email protected]>",
"mashharuki <[email protected]>",
"Yosuke <[email protected]>",
"yawn <[email protected]>",
"SHØ <[email protected]>"
],
"scripts": {
"book:serve": "cd packages/book && npm run serve",
"book:build": "cd packages/book && npm run build",
"start:interface": "npm run start -w packages/interface",
"lint": "eslint . && solhint --max-warnings 0 -c packages/contracts/**/*.sol",
"lint:fix": "eslint --fix . && solhint --fix --max-warnings 0 -c packages/contracts/**/*.sol",
"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 .",
"test": "npm run --workspaces test",
"test:contract": "npm run test -w packages/contracts"
},
"workspaces": [
"packages\\contracts",
"packages\\book",
"packages\\interface"
],
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"dotenv": "^16.0.3",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "2.8.4",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"simple-git-hooks": "^2.8.1",
"solhint": "^3.4.0",
"solidity-coverage": "^0.8.1"
}
}