forked from trufflesuite/ganache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.3 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
{
"name": "root",
"author": "David Murdoch <[email protected]> (https://davidmurdoch.com)",
"private": true,
"engines": {
"node": ">=10.13.0 <=14.16.0",
"npm": ">=6.4.1"
},
"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": "ts-node scripts/create",
"docs.build": "shx cp -r src/packages/ganache/dist/web/* docs/assets/js/ganache && lerna run docs.build && ts-node scripts/build-docs/",
"docs.preview": "lerna run docs.preview",
"postinstall": "ts-node scripts/postinstall",
"reinstall": "npm run clean && npm install",
"release": "npm run tsc.clean && npm run tsc && npm test && npm run build && lerna publish --yes --canary --no-git-reset --preid canary --dist-tag canary --force-publish --exact && npm run docs.build",
"prepublishOnly": "ts-node ./scripts/filter-shrinkwrap.ts \"$(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": "ttsc --build src",
"tsc.clean": "npx lerna exec -- npx shx rm -rf lib dist typings"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.1",
"@types/fs-extra": "9.0.7",
"@types/mocha": "8.2.2",
"@types/node": "14.14.31",
"@types/prettier": "2.2.1",
"@types/yargs": "16.0.0",
"@zerollup/ts-transform-paths": "1.7.18",
"camelcase": "6.2.0",
"chalk": "4.1.0",
"cli-highlight": "2.1.10",
"comment-json": "4.1.0",
"cross-env": "7.0.2",
"fs-extra": "9.0.1",
"git-user-name": "2.0.0",
"glob": "7.1.6",
"husky": "5.1.1",
"into-stream": "6.0.0",
"lerna": "4.0.0",
"marked": "2.0.0",
"mocha": "8.4.0",
"monaco-editor": "0.22.3",
"nyc": "15.1.0",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"shx": "0.3.3",
"ts-node": "9.1.1",
"ts-transformer-inline-file": "0.1.1",
"ttypescript": "1.5.12",
"typescript": "4.1.3",
"validate-npm-package-name": "3.0.0",
"yargs": "16.2.0"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {}
}