-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.46 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.46 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
{
"name": "neun-angular",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "node --max_old_space_size=8192 ./node_modules/@angular/cli/bin/ng serve --host 0.0.0.0",
"build": "node --max_old_space_size=4096 ./node_modules/@angular/cli/bin/ng build --configuration production --deploy-url /neun-angular/",
"build:watch": "node --max_old_space_size=8192 ./node_modules/@angular/cli/bin/ng build --watch --configuration development",
"build:ne": "node --max_old_space_size=8192 ./node_modules/@angular/cli/bin/ng build ng-neun --configuration production",
"build:ne:ivy": "node --max_old_space_size=8192 ./node_modules/@angular/cli/bin/ng build ng-neun",
"test": "ng test",
"test:lib": "ng test ng-neun --no-watch --no-progress --browsers=ChromeHeadlessCI",
"e2e": "ng e2e",
"lint": "ng lint",
"lint:ng-neun": "eslint --ext .js,.ts \"{ng-neun,src}/**/*.{ts,js}\"",
"lint:ng-neun:fix": "eslint --ext .js,.ts --fix \"{ng-neun,src}/**/*.{ts,js}\"",
"prettier": "prettier --config ./.prettierrc --write \"{ng-neun,src}/**/*.html\"",
"stylelint": "stylelint \"{ng-neun,src}/**/*.{scss,css}\" --fix",
"css-minify": "cleancss --format breakWith=lf --output ./publish/ng-neun.min.css ./publish/ng-neun.css",
"css-compile": "node scripts/sass-handler.js ./ng-neun/style/ng-neun.scss ./publish/ng-neun.css"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.1.3",
"@angular/common": "^15.1.3",
"@angular/compiler": "^15.1.3",
"@angular/core": "^15.1.3",
"@angular/forms": "^15.1.3",
"@angular/platform-browser": "^15.1.3",
"@angular/platform-browser-dynamic": "^15.1.3",
"@angular/router": "^15.1.3",
"normalize.css": "^8.0.1",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.1.4",
"@angular/cli": "~15.1.4",
"@angular/compiler-cli": "^15.1.3",
"@types/jasmine": "~4.3.0",
"clean-css-cli": "^5.6.2",
"eslint": "^8.33.0",
"jasmine-core": "~4.5.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"ng-packagr": "^15.0.0",
"prettier": "^2.8.3",
"sass": "^1.57.1",
"stylelint": "^14.16.1",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-scss": "^4.3.0",
"typescript": "~4.8.2"
}
}