-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.9 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
{
"name": "accesspath",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"ng": "ng",
"start": "npm run dev:site",
"build:core": "npm run build -w @accesspath/core",
"build:embed": "npm run build -w @accesspath/embed",
"build:react": "npm run build -w @accesspath/react",
"build:angular-lib": "ng build accesspath-angular",
"build:site": "npm run build -w @accesspath/site",
"build:wordpress": "npm run build:embed && npm run build -w @accesspath/wordpress",
"dev:site": "npm run dev -w @accesspath/site",
"demo:angular": "npm run build:core && ng serve accesspath-angular-demo",
"build:all": "npm run build:core && npm run build:embed && npm run build:react && npm run build:angular-lib && npm run build:site",
"check": "node scripts/check-docs-sync.mjs",
"publish:core": "npm run build:core && npm publish -w @accesspath/core",
"publish:embed": "npm run build:core && npm run build:embed && npm publish -w @accesspath/embed",
"publish:react": "npm run build:core && npm run build:react && npm publish -w @accesspath/react",
"publish:angular": "npm run build:core && npm run build:angular-lib && cp LICENSE packages/angular/README.md dist/accesspath-angular/ && npm publish ./dist/accesspath-angular"
},
"dependencies": {
"@angular/animations": "^16.2.0",
"@angular/common": "^16.2.0",
"@angular/compiler": "^16.2.0",
"@angular/core": "^16.2.0",
"@angular/forms": "^16.2.0",
"@angular/platform-browser": "^16.2.0",
"@angular/platform-browser-dynamic": "^16.2.0",
"@angular/router": "^16.2.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.16",
"@angular/cli": "^16.2.16",
"@angular/compiler-cli": "^16.2.0",
"ng-packagr": "^16.2.3",
"typescript": "~5.1.3",
"vite": "^5.4.0"
}
}