-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.4 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
{
"name": "@ordercloud/angular-sdk-project",
"version": "1.2.0",
"scripts": {
"start": "ng serve",
"build": "npm run build:sdk && npm run build:test && npm run build:docs",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"prebuild:sdk": "npm run codegen",
"precodegen": "tsc --project projects/sdk/codegen/tsconfig.json",
"codegen": "oc-codegen -t projects/sdk/codegen/templates -o projects/sdk/src/lib -b projects/sdk/codegen/handlebars-extensions -k projects/sdk/codegen/hooks.js -c",
"build:sdk": "ng build --prod",
"build:test": "ng test --no-watch --no-progress --browsers=ChromeHeadlessCI",
"build:docs": "typedoc projects/sdk/src/",
"postbuild:docs": "shx rm docs/index.html && shx mv docs/globals.html docs/index.html",
"publish-please": "publish-please --ci",
"publish-lib": "cd dist/sdk && npm publish",
"prepublishOnly": "publish-please guard",
"debug-template-data": "npm run precodegen && oc-codegen -d -k projects/sdk/codegen/hooks.js > templateData.json"
},
"private": true,
"dependencies": {
"@angular/animations": "~10.0.8",
"@angular/common": "~10.0.8",
"@angular/compiler": "~10.0.8",
"@angular/core": "~10.0.8",
"@angular/forms": "~10.0.8",
"@angular/platform-browser": "~10.0.8",
"@angular/platform-browser-dynamic": "~10.0.8",
"@angular/router": "~10.0.8",
"ngx-cookie": "^5.0.0",
"rxjs": "~6.5.4",
"tslib": "^1.10.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.900.7",
"@angular-devkit/build-ng-packagr": "~0.900.7",
"@angular/cli": "^10.0.6",
"@angular/compiler-cli": "~10.0.8",
"@angular/language-service": "~10.0.8",
"@ordercloud/oc-codegen": "0.0.1-20",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"codelyzer": "^5.1.2",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~2.1.0",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"ng-packagr": "^9.0.0",
"protractor": "~5.4.3",
"publish-please": "^5.5.1",
"shx": "^0.3.2",
"ts-node": "~8.3.0",
"tslint": "~5.18.0",
"typedoc": "~0.16.10",
"typescript": ">=3.9.2 <4.0.0"
},
"engines": {
"yarn": "PLEASE USE NPM INSTEAD OF YARN"
}
}