forked from AngularThailand/who-use-angular-in-thailand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.85 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
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
{
"name": "who-use-angular-in-thailand",
"version": "0.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
"serve": "npm run build:lib && npm run start",
"lint:lib": "ng lint angular-th --fix",
"lint:app:who": "ng lint who-use-angular-in-thailand --fix",
"lint:app:quiz": "ng lint angular-quiz --fix",
"pretest": "jest --clearCache",
"test": "jest",
"test:lib": "jest --config ./jest.libs.config.js --runInBand",
"test:app:quiz": "jest --config ./jest.quiz.config.js --runInBand",
"test:app:who": "jest --config ./jest.app.config.js --runInBand",
"test:watch": "jest --watch",
"e2e:app:who": "ng e2e who-use-angular-in-thailand-e2e --protractor-config=./e2e/protractor-ci.conf.js --webdriver-update=false",
"e2e:app:quiz": "ng e2e angular-quiz-e2e --protractor-config=./projects/angular-quiz-e2e/protractor-ci.conf.js --port=4201 --webdriver-update=false",
"build:lib": "ng build angular-th",
"build:app:who": "npm run build:app",
"build:app": "ng build --prod",
"build:gh": "ng build --configuration=gh-pages --deploy-url /who-use-angular-in-thailand/ --base-href /who-use-angular-in-thailand/",
"build:prod": "ng build --configuration=production",
"build:app:quiz": "npm run build:quiz",
"build:quiz": "ng build angular-quiz --configuration=production",
"analyze:app": "npm run build:prod -- --stats-json && webpack-bundle-analyzer ./dist/who-use-angular-in-thailand/stats.json",
"cypress:ci": "cypress run --record --parallel",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"format": "prettier --write 'src/**/*.{ts.scss}'",
"analyze:quiz": "npm run build:quiz -- --stats-json && webpack-bundle-analyzer ./dist/angular-quiz/stats.json",
"ng-packagr:angular-th": "ng-packagr -p projects/angular-th/package.json",
"ci": "npm run ci:lib",
"ci:lib": "npm run lint:lib && npm run test:lib && npm run build:lib && npm run ci:app",
"ci:app": "npm-run-all --parallel --race ci:who ci:quiz && npm run webdriver-update-ci && npm run e2e:app:who && npm run e2e:app:quiz",
"ci:who": "npm run lint:app:who && npm run test:app:who",
"ci:quiz": "npm run lint:app:quiz && npm run test:app:quiz",
"webdriver-update-ci": "webdriver-manager update --standalone false --gecko false --versions.chrome 2.37"
},
"private": false,
"dependencies": {
"@angular/animations": "^7.1.4",
"@angular/cdk": "^7.2.0",
"@angular/common": "^7.1.4",
"@angular/compiler": "^7.1.4",
"@angular/core": "^7.1.4",
"@angular/flex-layout": "^7.0.0-beta.19",
"@angular/forms": "^7.1.4",
"@angular/http": "^7.1.4",
"@angular/material": "^7.2.0",
"@angular/platform-browser": "^7.1.4",
"@angular/platform-browser-dynamic": "^7.1.4",
"@angular/pwa": "^0.10.7",
"@angular/router": "^7.1.4",
"@angular/service-worker": "^7.1.4",
"@types/jasmine": "^2.8.14",
"core-js": "^2.6.1",
"jasmine": "^3.3.1",
"rxjs": "~6.3.3",
"zone.js": "~0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.10.7",
"@angular-devkit/build-ng-packagr": "^0.10.7",
"@angular/cli": "^7.1.4",
"@angular/compiler-cli": "^7.1.4",
"@angular/language-service": "^7.1.4",
"@types/jasminewd2": "^2.0.6",
"@types/node": "~8.9.4",
"codelyzer": "~4.3.0",
"cypress": "^3.1.3",
"husky": "^1.3.0",
"jasmine-core": "^3.2.1",
"jasmine-spec-reporter": "^4.2.1",
"jasminewd2": "^2.2.0",
"jest": "^23.6.0",
"jest-preset-angular": "^6.0.2",
"ng-packagr": "^4.4.5",
"npm-run-all": "^4.1.5",
"prettier": "^1.15.3",
"protractor": "^5.4.2",
"ts-node": "~7.0.0",
"tsickle": "^0.34.0",
"tslib": "^1.9.0",
"tslint": "~5.11.0",
"typescript": "^3.1.6",
"webpack": "^4.28.2",
"webpack-bundle-analyzer": "^3.0.3"
},
"husky": {
"hooks": {
"pre-push": "npm run ci"
}
}
}