-
Notifications
You must be signed in to change notification settings - Fork 671
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.48 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.48 KB
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
88
89
90
91
92
93
94
95
{
"name": "devextreme-nx-infra-plugin",
"version": "26.1.0",
"type": "commonjs",
"private": true,
"executors": "./dist/executors.json",
"exports": {
".": {
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"dependencies": {
"fs-extra": "11.2.0",
"glob": "11.1.0",
"js-beautify": "1.15.4",
"minimatch": "10.2.4",
"lodash": "4.18.1",
"normalize-path": "3.0.0",
"rimraf": "3.0.2",
"terser": "5.46.1",
"tsc-alias": "1.8.16"
},
"peerDependencies": {
"@babel/core": ">=7.0.0",
"@babel/plugin-transform-modules-commonjs": ">=7.0.0",
"@babel/plugin-transform-object-rest-spread": ">=7.0.0",
"@babel/plugin-transform-runtime": ">=7.0.0",
"@babel/preset-env": ">=7.0.0",
"babel-plugin-add-module-exports": ">=1.0.0",
"babel-plugin-inferno": ">=6.0.0",
"core-js-compat": ">=3.0.0",
"karma": ">=6.0.0",
"ng-packagr": ">=19.0.0",
"webpack": ">=5.0.0"
},
"peerDependenciesMeta": {
"@babel/core": {
"optional": true
},
"@babel/plugin-transform-modules-commonjs": {
"optional": true
},
"@babel/plugin-transform-object-rest-spread": {
"optional": true
},
"@babel/plugin-transform-runtime": {
"optional": true
},
"@babel/preset-env": {
"optional": true
},
"babel-plugin-add-module-exports": {
"optional": true
},
"babel-plugin-inferno": {
"optional": true
},
"core-js-compat": {
"optional": true
},
"karma": {
"optional": true
},
"ng-packagr": {
"optional": true
},
"webpack": {
"optional": true
}
},
"devDependencies": {
"@types/babel__core": "7.20.5",
"@types/fs-extra": "11.0.4",
"@types/jest": "29.5.14",
"@types/lodash": "4.17.24",
"@types/minimatch": "5.1.2",
"@types/node": "18.19.130",
"@types/normalize-path": "3.0.2",
"prettier": "catalog:tools",
"ts-jest": "29.1.3",
"ts-node": "10.9.2",
"typescript": "4.9.5",
"webpack": "5.105.4"
},
"scripts": {
"postinstall": "pnpm exec ts-node --project scripts/tsconfig.json scripts/build.ts --force && pnpm --workspace-root nx reset",
"format:check": "prettier --check .",
"format": "prettier --write .",
"build": "pnpm exec ts-node --project scripts/tsconfig.json scripts/build.ts --force",
"test": "pnpm --workspace-root nx test devextreme-nx-infra-plugin",
"lint": "pnpm run format:check"
}
}