forked from sphinx-labs/sphinx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.67 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
66
67
68
69
70
71
72
73
74
{
"private": true,
"name": "sphinx",
"version": "0.0.0",
"author": "Kelvin Fichter",
"license": "MIT",
"workspaces": {
"packages": [
"packages/contracts",
"packages/core",
"packages/plugins",
"packages/demo"
],
"nohoist": [
"@hujw77/contracts/solmate",
"@hujw77/{contracts,plugins,demo}/forge-std",
"@hujw77/{contracts,plugins,demo}/ds-test",
"@hujw77/{contracts,plugins}/@openzeppelin/contracts",
"@hujw77/plugins/@openzeppelin/contracts-upgradeable",
"@hujw77/{contracts,plugins}/@eth-optimism/contracts",
"@hujw77/{plugins,demo}/@hujw77/contracts",
"@hujw77/demo/@hujw77/plugins",
"@hujw77/{contracts,plugins}/sphinx-forge-std",
"@hujw77/{plugins,demo}/sphinx-solmate",
"@hujw77/demo/@hujw77/plugins",
"@hujw77/plugins/solidity-stringutils",
"@hujw77/plugins/@layerzerolabs/solidity-examples",
"@hujw77/contracts/@gnosis.pm/safe-contracts",
"@hujw77/contracts/@gnosis.pm/safe-contracts-1.4.1",
"@hujw77/contracts/@eth-optimism/contracts-bedrock"
]
},
"scripts": {
"preinstall": "sh ./scripts/create-placeholder.sh",
"build:release": "/bin/bash ./scripts/build-release.sh && yarn build",
"build": "yarn workspaces run build",
"test:root": "npx mocha --require ts-node/register --timeout 500000 'test/**/*.ts'",
"test": "yarn workspaces run test",
"clean": "yarn workspaces run clean",
"lint": "yarn workspaces run lint",
"lint:fix": "yarn workspaces run lint:fix",
"changeset:version:custom": "yarn changeset version && yarn workspace @hujw77/contracts run write-version && yarn workspace @hujw77/plugins run write-version"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.2",
"@changesets/cli": "^2.16.0",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "18.15.13",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^4.26.0",
"chai": "^4.2.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^35.1.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-unicorn": "^42.0.0",
"lint-staged": "11.0.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"prettier": "^2.3.1",
"prettier-plugin-solidity": "^1.2.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"packageManager": "[email protected]"
}