forked from usecannon/cannon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.95 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint:js": "eslint '{packages,examples}/**/*.{js,ts}'",
"lint:sol": "solhint '{packages,examples}/*/{contracts,src}/**/*.sol'",
"lint": "npm-run-parallel lint:js lint:sol",
"lint:fix:js": "prettier --write '{packages,examples}/**/*.{js,ts}' && eslint --fix '{packages,examples}/**/*.{js,ts}'",
"lint:fix:sol": "prettier --write '{packages,examples}/*/{contracts,src}/**/*.sol'",
"lint:fix": "npm-run-parallel lint:fix:js lint:fix:sol",
"test-all": "lerna run test",
"build": "lerna run build",
"publish": "lerna publish",
"docgen-md": "cd ./packages/builder && npm run docgen && cd - && cd ./packages/cli && npm run docgen",
"docgen": "npm run docgen-md && rm ./docs/actions/core-actions.md && mv ./docs/actions/modules/* ./docs/actions/ && concat-md --hide-anchor-links ./docs/actions/ > ./packages/website/content/docs-configuration.md",
"website-dev": "npm run dev --workspace=packages/website",
"website": "npm run start --workspace=packages/website"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"lerna": "^7.2.0",
"npm-run-parallel": "^0.6.0",
"nx-cloud": "^16.0.5",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"release-please": "^15.12.0",
"solhint": "^3.4.1",
"solhint-plugin-prettier": "^0.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"license": "GNU GPL V3.0",
"dependencies": {
"concat-md": "^0.5.1"
}
}