This repository was archived by the owner on May 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.85 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.85 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
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "ab-testing",
"version": "1.0.20",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve --open",
"cl:build": "npm run build:prod && npm run cl:copy-package-json",
"cl:copy-package-json": "cp projects/abtesting/package.json dist/abtesting/",
"start:prod": "npm run build:prod && npm run server",
"prebuild": "npm run test",
"build": "ng build",
"prebuild:prod": "npm run test",
"build:prod": "ng build --prod",
"build:dev": "ng build -c=development",
"lint": "ng lint",
"test": "ng test",
"watch": "ng test --configuration=test --browsers ChromeHeadless --watch",
"e2e": "ng e2e",
"format:write": "prettier projects/**/*.{ts,json,md,scss} --write",
"format:test": "prettier projects/**/*.{ts,json,md,scss} --list-different",
"release": "standard-version && git push --follow-tags origin master",
"analyze": "npm run build:prod -- --stats-json && webpack-bundle-analyzer ./dist/abtesting/stats-es2015.json",
"server": "node ./projects/server/server.js",
"build:development": "npm run build:dev",
"build:production": "npm run build:prod"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"private": true,
"dependencies": {
"@angular-extensions/elements": "^8.4.1",
"@angular-extensions/model": "^8.0.0",
"@angular/animations": "~8.0.0",
"@angular/cdk": "~8.0.0",
"@angular/common": "~8.0.0",
"@angular/compiler": "~8.0.0",
"@angular/core": "~8.0.0",
"@angular/forms": "~8.0.0",
"@angular/http": "^8.0.0-beta.10",
"@angular/material": "~8.0.0",
"@angular/platform-browser": "~8.0.0",
"@angular/platform-browser-dynamic": "~8.0.0",
"@angular/router": "~8.0.0",
"@ngrx/effects": "^8.0.0",
"@ngrx/entity": "^8.0.0",
"@ngrx/router-store": "^8.0.0",
"@ngrx/store": "^8.0.0",
"@ngrx/store-devtools": "^8.0.0",
"@ngx-translate/core": "^11.0.1",
"@ngx-translate/http-loader": "^4.0.0",
"@swimlane/ngx-charts": "^12.1.0",
"ang-jsoneditor": "^1.9.0",
"ansi-to-html": "^0.6.14",
"hammerjs": "^2.0.8",
"jsoneditor": "^8.6.1",
"lodash.clonedeep": "^4.5.0",
"lodash.find": "^4.6.0",
"lodash.groupby": "^4.6.0",
"ng-pick-datetime": "^7.0.0",
"ngx-skeleton-loader": "^2.2.0",
"papaparse": "^5.3.0",
"rxjs": "~6.5.0",
"tslib": "^1.9.0",
"upgrade_types": "^1.0.4",
"uuid": "^3.3.3",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.800.1",
"@angular/cli": "~8.0.0",
"@angular/compiler-cli": "~8.0.0",
"@angular/language-service": "~8.0.0",
"@types/jasmine": "~2.8.9",
"@types/jasminewd2": "^2.0.5",
"@types/mocha": "^5.2.7",
"@types/node": "^10.14.19",
"@types/uuid": "^3.4.4",
"codelyzer": "^5.0.0",
"express": "^4.16.4",
"jasmine-core": "~3.2.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.4",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.1",
"karma-spec-reporter": "^0.0.32",
"prettier": "^1.17.1",
"pretty-quick": "^1.11.1",
"protractor": "~5.4.1",
"rimraf": "^2.6.2",
"standard-version": "^8.0.1",
"stylelint": "^12.0.0",
"stylelint-config-concentric-order": "^3.5.0",
"stylelint-scss": "^3.13.0",
"ts-node": "~7.0.1",
"tslint": "~5.15.0",
"typescript": "~3.4.0",
"webpack-bundle-analyzer": "^3.3.2"
}
}