-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.71 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
{
"name": "arisucool",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "jest .",
"test:watch": "jest . --watchAll --verbose"
},
"engines": {
"node": "18.x"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.4",
"@angular/cdk": "^16.2.3",
"@angular/common": "^16.2.4",
"@angular/compiler": "^16.2.4",
"@angular/core": "^16.2.4",
"@angular/forms": "^16.2.4",
"@angular/material": "^16.2.3",
"@angular/platform-browser": "^16.2.4",
"@angular/platform-browser-dynamic": "^16.2.4",
"@angular/router": "^16.2.4",
"@kvs/indexeddb": "^2.1.3",
"@kvs/storage": "^2.1.3",
"ngx-device-detector": "^5.0.1",
"ngx-twitter-widgets": "^1.0.3",
"papaparse": "^5.4.1",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.1",
"@angular/cli": "~16.2.1",
"@angular/compiler-cli": "^16.2.4",
"@types/jest": "^29.5.5",
"@types/papaparse": "^5.3.8",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-preset-angular": "^13.1.1",
"typescript": "~4.9.4"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/src/setup-jest.ts"
],
"moduleNameMapper": {
"src/(.*)$": "<rootDir>/src/$1"
}
},
"jest-junit": {
"outputName": "jest-junit.xml",
"ancestorSeparator": " › ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
}
}