-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.9 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
{
"name": "another-one-notification-app",
"version": "0.1.4",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build-lib": "ng build another-one-notification & npm run build-lib-styles",
"build-lib:prod": "ng build another-one-notification --prod & npm run build-lib-styles",
"build-lib-styles": "scss-bundle -e \"./projects/another-one-notification/styles/main.scss\" -o \"./dist/another-one-notification/styles/main.scss\"",
"build-lib:watch": "ng build another-one-notification --watch",
"build-lib-styles:watch": "scss-bundle -e \"./projects/another-one-notification/styles/main.scss\" -o \"./dist/another-one-notification/styles/main.scss\" -w \"./projects/another-one-notification/styles\"",
"test": "ng test",
"test-debug": "ng test --watch",
"e2e": "ng e2e",
"prettier-format": "prettier --config .prettierrc projects/**/*.ts --write",
"lint": "npm run lint:src && npm run lint:ts",
"lint:src": "node node_modules/eslint/bin/eslint \"{projects,src}/**/*.{ts,tsx}\"",
"lint:src:fix": "npm run lint:src -- --fix",
"lint:ts": "tsc --noEmit",
"lint:ts:w": "npm run lint:ts -- --watch",
"lint:scss": "stylelint ./projects/**/*.scss"
},
"repository": {
"type": "git",
"url": "https://github.com/fiorsaoirse/ngx-notify.git"
},
"homepage": "https://github.com/fiorsaoirse/ngx-notify#readme",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/fiorsaoirse/ngx-notify/issues"
},
"private": true,
"dependencies": {
"@angular/animations": "~11.2.12",
"@angular/common": "~11.2.12",
"@angular/compiler": "~11.2.12",
"@angular/core": "~11.2.12",
"@angular/forms": "~11.2.12",
"@angular/platform-browser": "~11.2.12",
"@angular/platform-browser-dynamic": "~11.2.12",
"@angular/router": "~11.2.12",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.11.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.11",
"@angular/cli": "~11.2.11",
"@angular/compiler-cli": "~11.2.12",
"@types/jasmine": "~3.6.0",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"css-loader": "^5.0.1",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.1.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^11.0.0",
"prettier": "^2.2.1",
"protractor": "~7.0.0",
"scss-bundle": "^3.1.2",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-scss": "^3.19.0",
"ts-node": "~8.3.0",
"typescript": "~4.1.5"
}
}