-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.67 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.67 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
{
"name": "digitall-webresources",
"version": "1.0.0",
"description": "Template repository for Dynamics 365 webresources",
"private": true,
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "pnpm exec biome lint",
"build": "pnpm run dependencyCheck && pnpm run lint && pnpm run bundle",
"build:prod": "pnpm run lint && pnpm run bundle:prod",
"bundle": "webpack --config webpack.config.js --mode development --devtool inline-source-map",
"bundle:prod": "webpack --config webpack.config.js --mode production",
"dependencyCheck": "pnpm audit --prod && pnpm outdated --compatible",
"update": "pnpm update --latest --interactive",
"test": "pnpm exec jest --runInBand",
"test-watch": "pnpm exec jest --runInBand --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DIGITALLNature/webresources-template.git"
},
"author": "DIGITALL Nature GmbH",
"license": "MS-PL",
"bugs": {
"url": "https://github.com/DIGITALLNature/webresources-template/issues"
},
"homepage": "https://github.com/DIGITALLNature/webresources-template#readme",
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@jest/globals": "^30.3.0",
"@odata/parser": "^0.2.14",
"@testing-library/jest-dom": "^6.9.1",
"@types/jest": "^30.0.0",
"@types/xrm": "^9.0.88",
"globals": "^17.4.0",
"globby": "^16.1.1",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jest-globals": "^0.1.7",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"webpack": "^5.105.2",
"webpack-cli": "^6.0.1",
"xrm-mock": "^3.6.2"
}
}