-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 4.77 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 4.77 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
{
"name": "mantic-ui-test",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"prebuild": "license-to-json -output=./src/assets/3d-party-licenses.json",
"postbuild": "node scripts/create-app-version.js",
"build": "npm run mantic:build && npm run doc:build && npm run fomantic:build && npm run semantic:build && ng build",
"publish": "npm run mantic:publish && npm run doc:publish && npm run fomantic:publish && npm run semantic:publish",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint",
"eslint:build": "ng build eslint-config",
"eslint:publish": "cd dist\\eslint-config && npm publish --access public && cd ..\\..",
"eslint:publish-local": "cd ./dist/eslint-config && npm pack && copy *.tgz ..\\..\\ && cd ../..",
"eslint:bpl": "npm run eslint:build && npm run eslint:publish-local",
"eslint:bpli-ng": "npm run eslint:build && cd ./dist/eslint-config && npm pack && cd ../.. && node scripts/install-eslint-config-local.js",
"eslint:bpli": "cd ./projects/eslint-config && npm run build && cd ../../dist/eslint-config && npm pack && cd ../.. && node scripts/install-eslint-config-local-dist.js",
"eslint:pli": "cd ./projects/eslint-config && npm pack && cd ../.. && node scripts/install-eslint-config-local.js",
"mantic:build": "ng build mantic-ui",
"mantic:watch": "ng build mantic-ui --watch",
"mantic:publish": "cd dist\\mantic-ui && npm publish --access public && cd ..\\..",
"mantic:publish-rc": "cd dist\\mantic-ui && npm publish --access public --tag rc && cd ..\\..",
"mantic:publish-local": "cd ./dist/mantic-ui && npm pack && copy *.tgz ..\\..\\ && cd ../..",
"mantic:bpl": "npm run mantic:build && npm run mantic:publish-local",
"doc:build": "ng build mantic-ui-doc",
"doc:watch": "ng build mantic-ui-doc --watch",
"doc:publish": "cd dist\\mantic-ui-doc && npm publish --access public && cd ..\\..",
"doc:publish-rc": "cd dist\\mantic-ui-doc&& npm publish --access public --tag rc && cd ..\\..",
"doc:publish-local": "cd ./dist/mantic-ui-doc && npm pack && copy *.tgz ..\\..\\ && cd ../..",
"doc:bpl": "npm run doc:build && npm run doc:publish-local",
"fomantic:build": "ng build fomantic-ui",
"fomantic:watch": "ng build fomantic-ui --watch",
"fomantic:publish": "cd dist\\fomantic-ui && npm publish --access public && cd ..\\..",
"fomantic:publish-local": "cd ./dist/fomantic-ui && npm pack && copy *.tgz ..\\..\\ && cd ../..",
"semantic:build": "ng build semantic-ui & npm run semantic:postbuild",
"semantic:postbuild": "cd projects/semantic-ui && npm run postbuild && cd ../..",
"semantic:watch": "ng build semantic-ui --watch",
"semantic:publish": "cd dist\\semantic-ui && npm publish --access public && cd ..\\..",
"semantic:publish-rc": "cd dist\\semantic-ui && npm publish --access public --tag rc && cd ..\\..",
"semantic:publish-local": "cd ./dist/semantic-ui && npm pack && copy *.tgz ..\\..\\ && cd ../..",
"semantic:bpl": "npm run semantic:build && npm run semantic:publish-local",
"update:angular": "ng update @angular/core@latest @angular/cli@latest --force --allow-dirty",
"update:eslint": "ng update angular-eslint --force --allow-dirty && npx npm-check-updates \"/typescript-eslint\" -u && npx npm-check-updates \"/^eslint/\" -u && npm i --force",
"update:mantic": "npx npm-check-updates \"/^@mantic-ui//\" -u && npm i --force",
"update:fontawesome": "npx npm-check-updates \"/^@fortawesome//\" -u && npm i",
"update:highlight": "npm i ngx-highlightjs@latest highlight.js@latest"
},
"private": true,
"dependencies": {
"@angular/animations": "^21.0.0",
"@angular/common": "^21.0.0",
"@angular/compiler": "^21.0.0",
"@angular/core": "^21.0.0",
"@angular/forms": "^21.0.0",
"@angular/platform-browser": "^21.0.0",
"@angular/platform-browser-dynamic": "^21.0.0",
"@angular/router": "^21.0.0",
"@fortawesome/angular-fontawesome": "^4.0.0",
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/pro-solid-svg-icons": "^7.1.0",
"highlight.js": "^11.8.0",
"ngx-highlightjs": "^10.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular/build": "^21.0.0",
"@angular/cli": "^21.0.0",
"@angular/compiler-cli": "^21.0.0",
"@mantic-ui/eslint-config": "^21.0.0",
"@types/resize-observer-browser": "^0.1.7",
"angular-eslint": "21.0.0",
"eslint": "^9.39.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-rxjs-updated": "^1.0.50",
"eslint-plugin-unicorn": "^62.0.0",
"less": "^4.2.0",
"license-to-json": "^1.1.0",
"ng-packagr": "^21.0.0",
"typescript": "~5.9.3",
"typescript-eslint": "8.46.1"
}
}