-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
62 lines (62 loc) · 2.1 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": "developerdao-job-board",
"private": true,
"scripts": {
"dev": "yarn workspace client dev",
"build": "yarn workspace client build",
"start": "yarn workspace client start",
"lint": "yarn workspace client lint && yarn workspace hardhat-project lint",
"storybook": "yarn workspace client storybook",
"type-check": "yarn workspace client type-check && yarn workspace hardhat-project type-check",
"prepare": "husky install",
"chain": "yarn workspace hardhat-project chain",
"test": "yarn workspace hardhat-project test",
"deploy": "yarn workspace hardhat-project deploy",
"deploy:local": "yarn workspace hardhat-project deploy:local",
"deploy:rinkeby": "yarn workspace hardhat-project deploy:rinkeby",
"deploy:mainnet": "yarn workspace hardhat-project deploy:mainnet",
"compile": "yarn workspace hardhat-project compile",
"prettier": "yarn workspace hardhat-project prettier",
"accounts": "yarn workspace hardhat-project accounts",
"clean": "yarn workspace hardhat-project clean",
"coverage": "yarn workspace hardhat-project coverage",
"eslint": "yarn workspace hardhat-project eslint",
"solhint": "yarn workspace hardhat-project solhint"
},
"dependencies": {
"@types/node": "^16.11.9",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.2.0",
"eslint-config-next": "^12.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-storybook": "^0.5.3",
"husky": "^7.0.4",
"lint-staged": "^12.0.2",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"workspaces": {
"packages": [
"./database",
"packages/*"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,md,js,json,sol}": [
"prettier --write"
]
}
}