forked from ArkEcosystem/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.36 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"private": true,
"name": "core",
"description": "The packages that make up the Ark Core",
"scripts": {
"lerna": "./node_modules/lerna/cli.js",
"setup": "yarn && yarn clean && yarn bootstrap && yarn build",
"bootstrap": "yarn lerna bootstrap",
"clean": "yarn lerna clean --yes",
"build": "yarn lerna run build",
"publish:alpha": "yarn lerna run publish:alpha",
"publish:beta": "yarn lerna run publish:beta",
"publish:rc": "yarn lerna run publish:rc",
"publish:latest": "yarn lerna run publish:latest",
"lint": "yarn lerna run lint",
"format": "yarn lint && yarn prettier",
"prettier": "prettier --write \"./*.{ts,js,json,md}\" \"./packages/**/*.{ts,js,json,md}\"",
"test": "cross-env CORE_ENV=test jest --runInBand --forceExit",
"test:coverage": "cross-env CORE_ENV=test jest --coverage --coveragePathIgnorePatterns='/(defaults.ts|index.ts)$' --runInBand --forceExit",
"snyk": "./node_modules/.bin/snyk protect",
"upgrade": "cross-env-shell ./scripts/upgrade.sh",
"version": "cross-env-shell ./scripts/version.sh",
"updates": "yarn lerna run updates",
"docker": "node ./scripts/docker/generate-docker.js",
"bench": "node benchmark/index.js"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"@faustbrian/benchmarker": "^0.1.2",
"@sindresorhus/tsconfig": "^0.1.1",
"@types/babel__core": "^7.0.4",
"@types/body-parser": "^1.17.0",
"@types/express": "^4.16.0",
"@types/jest": "^23.3.10",
"@types/js-yaml": "^3.11.4",
"@types/node": "^10.12.17",
"@types/prettier": "^1.15.2",
"@types/pretty-ms": "^4.0.0",
"@types/request-promise": "^4.1.42",
"@types/rimraf": "^2.0.2",
"@types/uuid": "^3.4.4",
"@types/webpack": "^4.4.23",
"@types/webpack-merge": "^4.1.3",
"@types/webpack-node-externals": "^1.6.3",
"axios": "^0.18.0",
"babel-loader": "^8.0.4",
"body-parser": "^1.18.3",
"codecov": "^3.1.0",
"cross-env": "^5.2.0",
"del-cli": "^1.1.0",
"docdash": "^1.0.1",
"express": "^4.16.4",
"husky": "^1.3.0",
"jest": "^23.6.0",
"jest-extended": "^0.11.0",
"js-yaml": "^3.12.0",
"lerna": "^3.6.0",
"lint-staged": "^8.1.0",
"npm-check-updates": "^2.15.0",
"prettier": "^1.15.3",
"prompts": "^2.0.1",
"regenerator-runtime": "^0.13.1",
"request-promise": "^4.2.2",
"rimraf": "^2.6.2",
"snyk": "^1.118.0",
"ts-jest": "^23.10.5",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"typedoc": "^0.13.0",
"typescript": "^3.2.2",
"uuid": "^3.3.2",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.1.5",
"webpack-node-externals": "^1.7.2"
},
"workspaces": [
"packages/*",
"plugins/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged && cross-env-shell ./scripts/pre-commit.sh"
}
},
"jest": {
"preset": "./jest-preset.json",
"collectCoverageFrom": [
"packages/**/src/**/*.ts",
"!**/node_modules/**"
]
}
}