forked from haidnguyen/angular-rxjs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.74 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
{
"name": "angular-starter",
"version": "0.0.0",
"scripts": {
"start": "ng serve",
"build": "NODE_ENV=production ng build --prod",
"test": "jest --verbose",
"test:coverage": "jest --coverage",
"lint": "ng lint"
},
"private": true,
"dependencies": {
"@angular/animations": "^10.2.0",
"@angular/common": "^10.2.0",
"@angular/compiler": "^10.2.0",
"@angular/core": "^10.2.0",
"@angular/forms": "^10.2.0",
"@angular/platform-browser": "^10.2.0",
"@angular/platform-browser-dynamic": "^10.2.0",
"@angular/router": "^10.2.0",
"rxjs": "~6.6.3",
"tslib": "^2.0.3",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^10.0.1",
"@angular-devkit/build-angular": "^0.1002.0",
"@angular-eslint/builder": "0.5.0-beta.5",
"@angular-eslint/eslint-plugin": "0.5.0-beta.5",
"@angular-eslint/eslint-plugin-template": "0.5.0-beta.5",
"@angular-eslint/schematics": "^0.5.0-beta.5",
"@angular-eslint/template-parser": "0.5.0-beta.5",
"@angular/cli": "~10.2.0",
"@angular/compiler-cli": "^10.2.0",
"@testing-library/angular": "^10.1.2",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.5",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"codelyzer": "^6.0.1",
"cssnano": "^4.1.10",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.1",
"jest-preset-angular": "^8.3.2",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-scss": "^2.1.1",
"prettier": "^2.1.2",
"tailwindcss": "^1.9.6",
"ts-node": "~8.3.0",
"typescript": "^4.0.5"
}
}