-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.75 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.75 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
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "chatmod-frontend",
"description": "An Aurelia client application.",
"version": "0.1.0",
"repository": {
"type": "???",
"url": "???"
},
"license": "MIT",
"dependencies": {
"aurelia-bootstrapper": "^2.4.1",
"aurelia-animator-css": "^1.0.4"
},
"devDependencies": {
"eslint": "^9.17.0",
"globals": "^15.14.0",
"aurelia-cli": "^3.0.4",
"aurelia-testing": "^1.1.0",
"gulp": "^4.0.2",
"gulp-eslint-new": "^2.4.0",
"minimatch": "^10.0.1",
"promise-polyfill": "^8.3.0",
"typescript": "^5.7.2",
"tslib": "^2.8.1",
"@types/node": "^22.10.2",
"typescript-eslint": "^8.18.1",
"ts-loader": "^9.5.1",
"@types/webpack": "^5.28.5",
"html-webpack-plugin": "^5.6.3",
"copy-webpack-plugin": "^12.0.2",
"mini-css-extract-plugin": "^2.9.2",
"aurelia-webpack-plugin": "^5.0.6",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.0",
"expose-loader": "^5.0.0",
"style-loader": "^4.0.0",
"css-loader": "^7.1.2",
"app-settings-loader": "^2.0.10",
"json-loader": "^0.5.7",
"html-loader": "^5.1.0",
"webpack-bundle-analyzer": "^4.10.2",
"tree-kill": "^1.2.2",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"aurelia-loader-nodejs": "^1.1.0",
"aurelia-pal-nodejs": "^3.0.0-rc.2",
"ts-jest": "^29.2.5",
"@types/jest": "^29.5.14"
},
"scripts": {
"build": "webpack --env production",
"start": "webpack server",
"build:dev": "webpack",
"analyze": "webpack --env production --analyze",
"test": "au test"
},
"engines": {
"node": ">=14.15.0"
},
"overrides": {
"chokidar": "^3.0.0",
"glob-stream": "^7.0.0",
"glob-parent": "^6.0.0",
"micromatch": "^4.0.0"
},
"jest": {
"testMatch": [
"<rootDir>/test/**/*.spec.ts"
],
"moduleNameMapper": {
"^aurelia-binding$": "<rootDir>/node_modules/aurelia-binding"
},
"modulePaths": [
"<rootDir>/src",
"<rootDir>/node_modules"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
"^.+\\.(css|less|sass|scss|styl|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "jest-transform-stub",
"^.+\\.ts$": "ts-jest"
},
"setupFiles": [
"<rootDir>/test/jest-pretest.ts"
],
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,ts}",
"!**/*.spec.{js,ts}",
"!**/node_modules/**",
"!**/test/**"
],
"coverageDirectory": "<rootDir>/test/coverage-jest",
"coverageReporters": [
"json",
"lcov",
"text",
"html"
]
}
}