-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1.08 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
{
"name": "sph-solidity",
"version": "1.0.0",
"private": true,
"devDependencies": {
"@nuxtjs/eslint-module": "^4.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8"
},
"scripts": {
"prepare": "husky install",
"hardhat:solhint": "yarn workspace smart_contract lint:solhint",
"hardhat:prettier": "yarn workspace smart_contract lint:prettier",
"hardhat:test": "yarn workspace smart_contract test",
"hardhat:compile": "yarn workspace smart_contract compile",
"hardhat:node": "yarn workspace smart_contract run-node",
"hardhat:deploy-local": "yarn workspace smart_contract deploy-local",
"hardhat:deploy-sepolia": "yarn workspace smart_contract deploy-sepolia",
"hardhat:interact-local": "yarn workspace smart_contract interact-local",
"nuxt:dev": "yarn workspace fe dev",
"nuxt:eslint": "yarn workspace fe lint:eslint",
"nuxt:prettier": "yarn workspace fe lint:prettier"
},
"workspaces": {
"packages": [
"fe",
"smart_contract"
]
},
"dependencies": {
"tailwindcss": "^3.3.2"
}
}