This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 681
/
package.json
63 lines (63 loc) · 2.18 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
{
"name": "root",
"author": "David Murdoch <[email protected]> (https://davidmurdoch.com)",
"private": true,
"engines": {
"node": ">=16.0.0",
"npm": ">=7.10.0"
},
"scripts": {
"build": "npm run tsc && cross-env NODE_OPTIONS=--max_old_space_size=4096 lerna run build",
"clean": "npm run tsc.clean && npx lerna clean -y && npx shx rm -rf node_modules",
"create": "cd scripts && ts-node create",
"docs.build": "shx cp -r packages/ganache/dist/web/* docs/assets/js/ganache && lerna run docs.build && cd scripts && ts-node build-docs",
"docs.preview": "lerna run docs.preview",
"postinstall": "cd scripts && ts-node postinstall",
"reinstall": "npm run clean && npm install",
"prepublishOnly": "cd scripts && ts-node filter-shrinkwrap.ts \"$(lerna list --parseable --scope ganache)\"/npm-shrinkwrap.json",
"postpublish": "git restore \"$(lerna list --parseable --scope ganache)\"/npm-shrinkwrap.json",
"start": "lerna exec --loglevel=silent --scope ganache -- npm run start --silent -- ",
"test": "lerna exec --concurrency 1 -- npm run test",
"tsc": "tsc --build",
"tsc.clean": "npx lerna exec -- npx shx rm -rf lib dist typings",
"update-ethereumjs": "cd scripts && ts-node update-ethereumjs"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@types/fs-extra": "9.0.13",
"@types/marked": "4.0.8",
"@types/mocha": "9.0.0",
"@types/node": "17.0.0",
"@types/prettier": "2.4.2",
"@types/yargs": "16.0.0",
"camelcase": "6.2.1",
"chalk": "4.1.2",
"cli-highlight": "2.1.11",
"comment-json": "4.1.1",
"cross-env": "7.0.3",
"fs-extra": "9.1.0",
"git-user-name": "2.0.0",
"glob": "7.1.6",
"husky": "5.2.0",
"into-stream": "6.0.0",
"lerna": "4.0.0",
"marked": "4.3.0",
"mocha": "9.1.3",
"monaco-editor": "0.22.3",
"nyc": "15.1.0",
"prettier": "2.5.1",
"pretty-quick": "3.1.2",
"semver": "7.3.5",
"shx": "0.3.3",
"ts-node": "10.9.1",
"typescript": "5.1.6",
"validate-npm-package-name": "3.0.0",
"yargs": "16.2.0"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}