This repository has been archived by the owner on Apr 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 4.14 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "select-snapshot-ivy",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/ngxs-labs/select-snapshot-ivy.git"
},
"license": "MIT",
"scripts": {
"start-test": "start-server-and-test",
"ng": "ng",
"ts-node": "ts-node",
"// - APPS": "Run Apps in dev and with packaged modules",
"serve:integration": "ng serve --prod --project integration",
"serve:integration:static": "angular-http-server --path dist-integration -p 4200 --silent",
"serve:integration:ssr": "yarn ts-node integration/server",
"build": "ng build",
"build:integration": "ng run integration:build:production",
"build:integration:ssr": "ng run integration:server:production",
"// - PROVISIONING": "Provisioning scripts",
"select-snapshot-ivy:lint": "ng lint select-snapshot-ivy",
"select-snapshot-ivy:test": "ng test --runInBand",
"select-snapshot-ivy:build": "ts-node ./tools/build && ts-node ./tools/copy-readme",
"// - E2E": "E2E testing #requires yarn build:integration",
"cy:open": "cypress open --config integrationFolder=cypress/integration",
"cy:open:ssr": "cypress open --config integrationFolder=cypress/ssr",
"cy:run": "cypress run --config integrationFolder=cypress/integration",
"cy:run:ssr": "cypress run --config integrationFolder=cypress/ssr",
"cy:run:chrome": "yarn cy:run --browser chrome",
"cy:run:chromium": "yarn cy:run --browser chromium",
"e2e": "start-test serve:integration 4200 cy:open",
"e2e:chrome": "start-test serve:integration 4200 cy:run:chrome",
"e2e:ssr": "start-test serve:integration:ssr 4200 cy:open:ssr",
"e2e:chromium": "start-test serve:integration 4200 cy:run:chromium",
"// - CI": "CI Testing",
"test:ci": "ng test --project select-snapshot-ivy --colors --runInBand",
"test:ci:e2e": "yarn start-test serve:integration:static 4200 cy:run",
"test:ci:integration": "yarn build:integration",
"test:ci:integration:ssr": "yarn build:integration:ssr && yarn start-test serve:integration:ssr 4200 cy:run:ssr",
"// - UTILS": "Utility scripts",
"bump": "ts-node ./tools/bump",
"create-project": "ts-node ./tools/create-project",
"format": "prettier {src,integration}/**/*.ts --write"
},
"private": true,
"devDependencies": {
"@angular-builders/jest": "^8.2.0",
"@angular-devkit/build-angular": "^0.900.0-next.1",
"@angular-devkit/build-ng-packagr": "^0.900.0-next.1",
"@angular/animations": "9.0.0-next.3",
"@angular/cli": "^9.0.0-next.1",
"@angular/common": "9.0.0-next.3",
"@angular/compiler": "9.0.0-next.3",
"@angular/compiler-cli": "9.0.0-next.3",
"@angular/core": "9.0.0-next.3",
"@angular/platform-browser": "9.0.0-next.3",
"@angular/platform-browser-dynamic": "9.0.0-next.3",
"@angular/platform-server": "9.0.0-next.3",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-angular": "^8.1.0",
"@cypress/webpack-preprocessor": "^4.1.0",
"@nguniversal/module-map-ngfactory-loader": "^8.1.1",
"@ngxs/logger-plugin": "^3.5.0",
"@ngxs/store": "^3.5.0",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.2",
"@types/semver": "^6.0.1",
"angular-http-server": "^1.9.0",
"codelyzer": "^5.1.0",
"colors": "^1.3.3",
"core-js": "^3.2.1",
"cypress": "^3.4.1",
"husky": "^3.0.4",
"jest": "^24.9.0",
"lint-staged": "^9.2.5",
"ng-packagr": "^5.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"rxjs": "^6.5.2",
"semver": "^6.3.0",
"start-server-and-test": "^1.10.0",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"tsickle": "^0.37.0",
"tslib": "^1.10.0",
"tslint": "^5.19.0",
"tslint-sonarts": "^1.9.0",
"typescript": "^3.5.3",
"zone.js": "^0.10.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"prettier": {
"semi": true,
"endOfLine": "lf",
"tabWidth": 2,
"printWidth": 100,
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "avoid",
"singleQuote": true
}
}