-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
85 lines (85 loc) · 2.25 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "mobx-angular-cli",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:mobx-angular": "ng build mobx-angular",
"test": "ng test --code-coverage",
"testci:mobxangular": "ng test mobx-angular --watch=false --code-coverage",
"lint": "ng lint",
"e2e": "ng e2e",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.1.3",
"@angular/cdk": "^18.1.3",
"@angular/common": "^18.1.3",
"@angular/compiler": "^18.1.3",
"@angular/core": "^18.1.3",
"@angular/forms": "^18.1.3",
"@angular/localize": "^18.1.3",
"@angular/material": "^18.1.3",
"@angular/platform-browser": "^18.1.3",
"@angular/platform-browser-dynamic": "^18.1.3",
"@angular/router": "^18.1.3",
"@types/jest": "^25.1.3",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-preset-angular": "^14.2.2",
"lodash": "^4.17.21",
"mobx": "^6.8.0",
"mobx-remotedev": "^0.3.6",
"rxjs": "^7.8.0",
"todomvc-app-css": "^2.4.2",
"todomvc-common": "^1.0.5",
"tslib": "^2.5.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.1.3",
"@angular/cli": "^18.1.3",
"@angular/compiler-cli": "^18.1.3",
"@angular/language-service": "^18.1.3",
"@types/jasmine": "^4.3.0",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^18.11.9",
"codelyzer": "^6.0.2",
"jasmine-core": "^4.5.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"karma-spec-reporter": "^0.0.36",
"lint-staged": "^13.1.2",
"ng-packagr": "^18.1.0",
"prettier": "^2.8.4",
"protractor": "~7.0.0",
"ts-node": "^10.9.1",
"tslint": "~6.1.3",
"typescript": "^5.4.5"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"jsxBracketSameLine": true,
"requirePragma": false
},
"lint-staged": {
"*.{js,ts,json}": [
"prettier --write"
],
"*.ts": [
"tslint"
]
}
}