-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
66 lines (66 loc) · 2.08 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
{
"name": "sei-js",
"version": "2.0.0",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build:all": "nx run-many --target=build",
"build:since": "nx affected --target=build",
"prebuild": "yarn build:since",
"postinstall": "yarn update-submodules",
"update-submodules": "git submodule update --init --recursive",
"docs": "npx typedoc",
"lint:all": "nx run-many --target=lint --exclude=template-*",
"lint:since": "nx affected --target=lint",
"prerelease": "yarn build:all",
"release": "changeset publish",
"postrelease": "git push --follow-tags",
"release:internal": "yarn build:all && yarn changeset && yarn changeset version --snapshot internal && yarn changeset publish --no-git-tag --snapshot --tag internal",
"test:all": "nx run-many --target=test --skip-nx-cache",
"test:since": "nx affected --target=test",
"test:coverage": "nx test --all --coverage --skip-nx-cache"
},
"dependencies": {
"@changesets/cli": "^2.26.0",
"axios": "^1.6.0",
"glob": "^10.3.10",
"tslib": "^2.3.0"
},
"devDependencies": {
"@knodes/typedoc-plugin-pages": "^0.23.4",
"@nrwl/node": "18.1.3",
"@nrwl/nx-cloud": "18.0.0",
"@nrwl/workspace": "18.1.3",
"@nx/esbuild": "18.1.3",
"@nx/eslint": "18.1.3",
"@nx/eslint-plugin": "18.1.3",
"@nx/jest": "18.1.3",
"@nx/js": "18.1.3",
"@nx/node": "18.1.3",
"@swc-node/register": "~1.8.0",
"@swc/core": "~1.3.85",
"@swc/helpers": "~0.5.2",
"@types/jest": "^29.5.5",
"@types/node": "20.8.2",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"esbuild": "^0.19.2",
"eslint": "~8.48.0",
"eslint-config-prettier": "^9.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "28.1.1",
"jest-environment-node": "^29.4.1",
"nodemon": "^3.1.0",
"nx": "18.1.3",
"prettier": "^3.2.5",
"rimraf": "^3.0.2",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typedoc": "^0.25.12",
"typedoc-material-theme": "^1.0.2",
"typescript": "5.4.4"
}
}