-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.86 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.86 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
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
86
87
88
89
90
91
92
93
{
"name": "habitat",
"version": "0.8.0",
"repository": {
"type": "git",
"url": "https://github.com/habitat-sh/builder.git"
},
"engines": {
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
"npm": ">=10.0.0"
},
"license": "Apache-2.0",
"scripts": {
"build": "concurrently \"npm run build-js\" \"npm run build-css\"",
"build-css": "sass --load-path=node_modules/bourbon-neat/core --load-path=node_modules/bourbon/app/assets/stylesheets --load-path=node_modules/normalize-scss/sass --load-path=node_modules/normalize-scss/node_modules/support-for/sass --load-path=node_modules --load-path=stylesheets --load-path=app --style=compressed --silence-deprecation=import --silence-deprecation=global-builtin --silence-deprecation=if-function --silence-deprecation=slash-div app/app.scss assets/app.css",
"build-css-watch": "npm run build-css -- --watch",
"build-e2e": "bin/e2e",
"build-js": "webpack --config webpack.conf.js",
"build-js-watch": "npm run build-js -- --watch",
"clean": "concurrently \"npm run clean-js\" \"npm run clean-css\"",
"clean-css": "rm -fv assets/app.css assets/app.css.map",
"clean-js": "rm -fv assets/app.js assets/app.js.map",
"dist": "bin/dist",
"lint": "npm run lint-js",
"lint-css": "echo 'CSS linting disabled (sass-lint removed; use stylelint as a replacement)'",
"lint-css-watch": "echo 'CSS lint-watch not available'",
"lint-js": "echo 'tslint removed; use eslint with @typescript-eslint for linting'",
"lint-js-watch": "echo 'lint-watch not available'",
"help": "cat README.md",
"repl": "cd app && ts-node",
"serve-e2e": "http-server ./dist -p 3000 --no-cache",
"start": "bin/start",
"test": "npm run test-unit && npm run test-e2e",
"test-unit": "karma start",
"test-unit-watch": "npm run test-unit -- --no-single-run",
"test-watch": "concurrently 'npm run test-unit-watch' 'npm run test-e2e-watch'",
"travis": "npm run test-unit && npm run test-e2e-record"
},
"dependencies": {
"@angular/animations": "22.1.0",
"@angular/cdk": "21.2.14",
"@angular/common": "22.1.0",
"@angular/compiler": "21.2.17",
"@angular/core": "22.1.0",
"@angular/forms": "22.1.0",
"@angular/material": "21.2.14",
"@angular/platform-browser": "22.1.0",
"@angular/platform-browser-dynamic": "22.1.0",
"@angular/router": "22.1.0",
"ansi_up": "^5.0.0",
"async": "^3.2.5",
"blueimp-md5": "^2.19.0",
"immutable": "^5.1.9",
"js-cookie": "^3.0.7",
"lodash": "^4.17.21",
"marked": "^15.0.6",
"moment": "^2.30.1",
"redux": "^4.2.1",
"redux-reset": "^0.3.0",
"redux-thunk": "^2.4.2",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"uuid": "^14.0.0",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular/compiler-cli": "21.2.17",
"@ngtools/webpack": "21.2.17",
"@types/jasmine": "^4.3.0",
"@types/node": "22.19.21",
"babel-loader": "^10.1.1",
"concurrently": "^8.2.0",
"http-server": "^14.1.1",
"jasmine-core": "^5.1.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-cli": "^2.0.0",
"karma-coverage": "^2.2.0",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-sourcemap-loader": "^0.4.0",
"karma-spec-reporter": "0.0.36",
"karma-webpack": "^5.0.1",
"ng2-mock-component": "^0.1.0",
"normalize-scss": "^7.0.0",
"sass": "^1.69.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
}
}