-
Notifications
You must be signed in to change notification settings - Fork 285
/
package.json
98 lines (98 loc) · 4.99 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
95
96
97
98
{
"private": true,
"name": "core",
"description": "The packages that make up the ARK Core",
"scripts": {
"setup": "yarn && yarn build",
"setup:clean": "yarn && yarn clean && yarn build",
"clean": "yarn lerna clean --yes",
"build": "yarn lerna run build",
"lint": "./node_modules/eslint/bin/eslint.js packages --ext .ts --fix",
"lint:tests": "./node_modules/eslint/bin/eslint.js __tests__ --ext .ts --fix",
"prettier": "prettier --write \"./*.{ts,js,json,md}\" \"./packages/**/*.{ts,js,json,md}\" \"./__tests__/**/*.{ts,js,json,md}\"",
"format": "yarn lint && yarn prettier",
"test": "cross-env CORE_ENV=test jest --runInBand --forceExit",
"test:parallel": "cross-env CORE_ENV=test jest --forceExit",
"test:coverage": "cross-env CORE_ENV=test jest --coverage --coveragePathIgnorePatterns='/(defaults.ts|index.ts)$' --runInBand --forceExit",
"test:debug": "cross-env CORE_ENV=test node --inspect-brk ./node_modules/.bin/jest --runInBand",
"test:watch": "cross-env CORE_ENV=test jest --runInBand --watch",
"test:watch:all": "cross-env CORE_ENV=test jest --runInBand --watchAll",
"test:unit": "cross-env jest __tests__/unit/** --forceExit",
"test:unit:coverage": "cross-env jest __tests__/unit --coverage --coveragePathIgnorePatterns='/(defaults.ts|index.ts)$'",
"test:unit:debug": "cross-env node --inspect-brk ./node_modules/.bin/jest __tests__/unit",
"test:unit:watch": "cross-env jest __tests__/unit --watch",
"test:unit:watch:all": "cross-env CORE_ENV=test jest __tests__/unit --watchAll",
"test:integration": "cross-env CORE_ENV=test jest __tests__/integration --runInBand --forceExit",
"test:integration:coverage": "cross-env CORE_ENV=test jest __tests__/integration --coverage --coveragePathIgnorePatterns='/(defaults.ts|index.ts)$' --runInBand --forceExit",
"test:integration:debug": "cross-env CORE_ENV=test node --inspect-brk ./node_modules/.bin/jest __tests__/integration --runInBand",
"test:integration:watch": "cross-env CORE_ENV=test jest __tests__/integration --runInBand --watch",
"test:integration:watch:all": "cross-env CORE_ENV=test jest __tests__/integration --runInBand --watchAll",
"test:functional": "cross-env CORE_ENV=test jest __tests__/functional --runInBand --forceExit",
"test:functional:coverage": "cross-env CORE_ENV=test jest __tests__/functional --coverage --coveragePathIgnorePatterns='/(defaults.ts|index.ts)$' --runInBand --forceExit",
"test:functional:debug": "cross-env CORE_ENV=test node --inspect-brk ./node_modules/.bin/jest __tests__/functional --runInBand",
"test:functional:watch": "cross-env CORE_ENV=test jest __tests__/functional --runInBand --watch",
"test:functional:watch:all": "cross-env CORE_ENV=test jest __tests__/functional --runInBand --watchAll",
"publish:alpha": "cross-env-shell ./scripts/publish/alpha.sh",
"publish:beta": "cross-env-shell ./scripts/publish/beta.sh",
"publish:rc": "cross-env-shell ./scripts/publish/rc.sh",
"publish:next": "cross-env-shell ./scripts/publish/next.sh",
"publish:latest": "cross-env-shell ./scripts/publish/latest.sh",
"upgrade": "cross-env-shell ./scripts/upgrade.sh",
"version": "cross-env-shell ./scripts/version.sh",
"deps": "cross-env-shell ./scripts/deps/update.sh",
"deps:missing": "node ./scripts/deps/missing.js",
"deps:unused": "node ./scripts/deps/unused.js",
"deps:types": "./node_modules/typesync/bin/typesync",
"madge:circular": "node ./scripts/circular.js",
"madge:graph": "./node_modules/madge/bin/cli.js --image circular-graph.svg --extensions ts ./packages/**/src",
"docker": "node ./scripts/docker/generate-docker.js",
"bench": "node benchmark/index.js"
},
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/preset-env": "7.15.4",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@faustbrian/benchmarker": "0.1.2",
"@oclif/dev-cli": "1.26.0",
"@types/babel__core": "7.1.16",
"@types/create-hash": "1.2.2",
"@types/depcheck": "0.9.1",
"@types/jest": "26.0.24",
"@types/node": "13.9.5",
"@types/prettier": "2.3.2",
"@types/rimraf": "3.0.2",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"babel-loader": "8.2.2",
"capture-console": "1.0.2",
"create-hash": "1.2.0",
"cross-env": "7.0.3",
"depcheck": "1.4.7",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-jest": "24.4.0",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-simple-import-sort": "5.0.3",
"eslint": "7.32.0",
"fs-extra": "8.1.0",
"jest-extended": "0.11.5",
"jest": "26.6.3",
"lerna": "7.4.2",
"madge": "6.1.0",
"moment-timezone": "0.5.44",
"nock": "13.5.1",
"npm-check-updates": "16.14.14",
"prettier": "2.4.0",
"rimraf": "5.0.5",
"sinon": "17.0.1",
"tmp": "0.2.1",
"ts-jest": "26.5.6",
"typedoc": "0.22.17",
"typescript": "4.1.6",
"typesync": "0.8.0"
},
"workspaces": [
"packages/*",
"plugins/*"
]
}