This repository has been archived by the owner on Apr 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.82 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
{
"name": "core",
"private": true,
"description": "The packages that make up the ARK Core",
"workspaces": [
"packages/*",
"plugins/*"
],
"scripts": {
"build": "ultra -r build",
"clean": "ultra -r clean",
"deps": "cross-env-shell ./scripts/deps/update.sh",
"deps:missing": "node ./scripts/deps/missing.js",
"deps:types": "./node_modules/typesync/bin/typesync",
"deps:unused": "node ./scripts/deps/unused.js",
"docker": "node ./scripts/docker/generate-docker.js",
"format": "pnpm run lint && pnpm run prettier",
"lint": "eslint packages/*/source --ext .ts --ignore-pattern *.test.ts --fix",
"lint:test": "eslint packages/ --ext .test.ts --fix",
"madge:circular": "node ./scripts/circular.js",
"madge:graph": "./node_modules/madge/bin/cli.js --image circular-graph.svg --extensions ts ./packages/**/source",
"prettier": "prettier --write \"./*.{ts,js,json,md}\" \"./packages/**/*.{ts,js,json,md}\" \"./.github/**/*.{json,yml,yaml}\"",
"rebuild": "pnpm run clean && ultra -r rebuild",
"setup": "pnpm install && pnpm run build",
"sort": "sort-package-json \"package.json\" \"packages/*/package.json\"",
"workflows:unit": "node scripts/generate-unit-workflow.js"
},
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/preset-env": "7.15.4",
"@noble/hashes": "^1.0.0",
"@oclif/dev-cli": "1.26.0",
"@types/babel__core": "7.1.16",
"@types/create-hash": "1.2.2",
"@types/depcheck": "0.9.1",
"@types/js-yaml": "3.12.7",
"@types/node": "13.9.5",
"@types/prettier": "2.3.2",
"@types/uuid": "8.3.1",
"@typescript-eslint/eslint-plugin": "^5.0",
"@typescript-eslint/parser": "^5.0",
"babel-loader": "8.2.2",
"c8": "~7.10.0",
"capture-console": "1.0.1",
"chalk": "4.1.2",
"cpy-cli": "3.1.1",
"create-hash": "1.2.0",
"cross-env": "7.0.3",
"del-cli": "3.0.1",
"depcheck": "1.4.2",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.10.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-testcafe": "^0.2.1",
"eslint-plugin-testing-library": "^5.0.0",
"eslint-plugin-unicorn": "^39.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"fs-extra": "10.0.0",
"get-port": "5.1.1",
"hash-wasm": "^4.9.0",
"husky": "4.3.8",
"js-yaml": "3.14.1",
"lint-staged": "10.5.4",
"madge": "4.0.1",
"moment": "2.29.1",
"moment-timezone": "0.5.33",
"nock": "13.1.3",
"npm-check-updates": "9.2.4",
"prettier": "2.4.0",
"sinon": "9.2.4",
"sort-package-json": "^1.54.0",
"tmp": "0.2.1",
"tsm": "^2.1.4",
"typedoc": "0.21.9",
"typescript": "4.5.5",
"typesync": "0.8.0",
"ultra-runner": "^3.10.5",
"uuid": "8.3.2",
"yaml": "^1.10.2"
}
}