-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
129 lines (129 loc) · 4.39 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "attach-action",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/ngxs-labs/attach-action.git"
},
"license": "MIT",
"contributors": [
{
"name": "David Leitner",
"email": "[email protected]"
}
],
"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 -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",
"attach-action:lint": "ng lint attach-action",
"attach-action:test": "ng test --runInBand",
"attach-action: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 attach-action",
"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.803.1",
"@angular-devkit/build-ng-packagr": "^0.803.1",
"@angular/animations": "^8.2.3",
"@angular/cli": "^8.3.1",
"@angular/common": "^8.2.3",
"@angular/compiler": "^8.2.3",
"@angular/compiler-cli": "^8.2.3",
"@angular/core": "^8.2.3",
"@angular/platform-browser": "^8.2.3",
"@angular/platform-browser-dynamic": "^8.2.3",
"@angular/platform-server": "^8.2.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/store": "^3.5.0",
"@types/express": "^4.17.1",
"@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",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"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
},
"dependencies": {
"tslib": "^1.10.0"
}
}