forked from Refinitiv/refinitiv-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.79 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
{
"name": "root",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"vscode-extensions/*",
"documents"
],
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"build": "nx run-many --target build",
"build:affected": "nx affected:build",
"build:docs": "nx run @refinitiv-ui/docs:build",
"build:prod": "nx run-many --target build:prod",
"clean": "npm run reset && nx run-many --target clean",
"format": "prettier --write '**/*.{js,cjs,ts,css,less,json,html,yml,md}' --ignore-unknown",
"start": "node cli.js start",
"start:docs": "nx run @refinitiv-ui/docs:start",
"test": "node cli.js test",
"test:affected": "nx affected:test",
"test:all": "nx run-many --target test",
"lint": "node cli.js lint",
"lint:affected": "eslint scripts && nx affected:lint",
"lint:all": "eslint scripts && nx run-many --target lint",
"lint-fix": "node cli.js lint:fix",
"lint-fix:all": "eslint scripts --fix && nx run-many --target lint:fix",
"reset": "nx reset",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@web/dev-server-esbuild": "^1.0.2",
"@web/test-runner": "^0.18.2",
"@web/test-runner-browserstack": "^0.7.1",
"@web/test-runner-playwright": "^0.11.0",
"chalk": "^5.3.0",
"chokidar-cli": "^3.0.0",
"concurrently": "^8.2.2",
"fast-glob": "^3.3.2",
"husky": "^8.0.3",
"json2md": "^2.0.1",
"lerna": "^7.4.1",
"lint-staged": "^15.2.0",
"nx": "^16.9.1",
"sinon": "^15.1.0",
"typedoc": "^0.25.4",
"typedoc-plugin-no-inherit": "^1.4.0",
"typescript": "^4.8.3",
"vite": "^5.4.7",
"web-component-analyzer": "2.0.0",
"yargs": "^17.7.2"
}
}