This repository has been archived by the owner on Jun 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
65 lines (65 loc) · 2.15 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
{
"name": "platform-sdk",
"private": true,
"description": "Cross-Platform Utilities for ARK Applications",
"scripts": {
"build": "ultra -r build",
"build:all": "pnpm run build && pnpm run build:release",
"build:release": "NODE_ENV=production bash scripts/build-release.sh",
"clean": "ultra -r clean",
"clean:browser": "ultra -r clean:browser",
"lint": "bash scripts/lint.sh",
"prettier": "prettier --write \"./*.{ts,js,json,md}\" \"./packages/**/*.{ts,js,json,md}\"",
"rebuild": "ultra -r rebuild",
"release": "pnpm run build:all && bash scripts/publish.sh",
"sort-package-json": "sort-package-json package.json && sort-package-json packages/**/package.json",
"test": "ultra -r test"
},
"dependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.7",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@babel/runtime": "^7.16.7",
"@types/eslint": "^8.2.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"babel-loader": "^8.2.3",
"big-integer": "^1.6.51",
"c8": "~7.10.0",
"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",
"node-polyfill-webpack-plugin": "^1.1.4",
"prettier": "^2.4.1",
"resolve-typescript-plugin": "^1.1.1",
"rimraf": "^3.0.2",
"sort-package-json": "^1.53.1",
"ts-loader": "^9.2.6",
"ts-morph": "^12.0.0",
"tsm": "^2.1.4",
"typescript": "^4.5.2",
"ultra-runner": "^3.10.5",
"uvu": "^0.5.2",
"watchlist": "~0.3.1",
"webpack": "^5.64.4",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1"
},
"engines": {
"node": ">=16.0.0"
},
"engineStrict": true
}