forked from Refinitiv/refinitiv-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.14 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"documents"
],
"engines": {
"node": ">=16.11.0",
"npm": ">=8.0.0"
},
"scripts": {
"lerna": "lerna",
"build": "nx run-many --target build --parallel --all",
"build:affected": "nx affected:build --parallel",
"build:docs": "nx run @refinitiv-ui/docs:build",
"build:prod": "nx run-many --target build:prod --all",
"start": "node cli start",
"start:docs": "nx run @refinitiv-ui/docs:start",
"test": "node cli test",
"test:affected": "nx affected:test",
"test:all": "nx affected:test --all",
"lint": "node cli lint",
"lint:affected": "nx affected:lint --parallel",
"lint:all": "nx affected:lint --parallel --all",
"lint-fix": "node cli lint:fix",
"lint-fix:all": "nx run-many --target lint:fix --parallel --all",
"reset": "nx reset"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@formatjs/intl-getcanonicallocales": "^1.8.0",
"@formatjs/intl-locale": "^2.4.41",
"@formatjs/intl-numberformat": "^7.2.6",
"@formatjs/intl-pluralrules": "^4.1.6",
"@open-wc/karma-esm": "^4.0.0",
"@web/dev-server": "^0.1.17",
"@web/dev-server-legacy": "^0.1.7",
"chalk": "^4.1.1",
"concurrently": "^6.1.0",
"deepmerge": "^4.2.2",
"es-dev-server": "^2.1.0",
"fast-glob": "^3.2.5",
"husky": "^4.3.8",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^2.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-mocha-snapshot": "^0.2.1",
"karma-snapshot": "^0.6.0",
"karma-source-map-support": "^1.4.0",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"micromatch": "^4.0.4",
"request": "^2.88.2",
"sinon": "^9.2.4",
"typescript": "^4.6.2",
"watch": "^1.0.2",
"web-component-analyzer": "^1.1.6",
"yargs": "^17.0.1",
"@nrwl/workspace": "latest",
"@nrwl/cli": "latest",
"@nrwl/tao": "latest"
}
}