forked from ngneat/helipopper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 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
{
"name": "helipopper-playground",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start-test": "start-server-and-test",
"deploy": "ng deploy --base-href=https://ngneat.github.io/helipopper/",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"contributors:add": "all-contributors add",
"hooks:pre-commit": "node hooks/pre-commit.js",
"commit": "git-cz",
"build:lib": "ng build @ngneat/helipopper --configuration production && npm run schematics:build && npm run copy",
"test:lib": "ng test @ngneat/helipopper",
"release": "cd projects/ngneat/helipopper && standard-version --infile ../../../CHANGELOG.md",
"test:lib:headless": "cross-env CI=true npm run test:lib",
"copy": "npm run schematics:copy && cp -r README.md dist/ngneat/helipopper",
"schematics:watch": "cd ./schematics/ && npm link && cd .. && npm link @ngneat/helipopper && npm run build --prefix ./schematics -- --watch",
"schematics:copy": "cp -r schematics/src/ dist/ngneat/helipopper/schematics",
"schematics:build": "npm run build --prefix ./schematics",
"build:playground": "ng build --project helipopper-playground --configuration production",
"test:playground": "ng test --project helipopper-playground",
"serve:playground": "ng s --project helipopper-playground --live-reload false",
"serve:playground:static": "serve dist/helipopper-playground -l 4200",
"// - E2E": "E2E testing",
"cy:open": "cypress open --config integrationFolder=cypress/integration",
"cy:run": "cypress run --config integrationFolder=cypress/integration",
"e2e": "start-test serve:playground 4200 cy:open",
"e2e:chrome": "start-test serve:playground 4200 cy:run:chrome",
"e2e:chromium": "start-test serve:playground 4200 cy:run:chromium",
"// - CI": "CI Testing",
"test:ci:e2e": "start-test serve:playground:static 4200 cy:run",
"test:playground:ci": "cross-env CI=true npm run test:playground -- --watch=false --browsers=ChromeHeadlessCustom"
},
"private": true,
"dependencies": {
"@angular/animations": "~12.0.0",
"@angular/common": "~12.0.0",
"@angular/compiler": "~12.0.0",
"@angular/core": "~12.0.0",
"@angular/forms": "~12.0.0",
"@angular/platform-browser": "~12.0.0",
"@angular/platform-browser-dynamic": "~12.0.0",
"@angular/router": "~12.0.0",
"@ngneat/lib": "^2.0.0",
"@ngneat/overview": "^2.0.0",
"@popperjs/core": "^2.4.2",
"rxjs": "~7.0.0",
"tippy.js": "^6.2.3",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/jest": "~12.0.0",
"@angular-devkit/build-angular": "~12.0.0",
"@angular-eslint/builder": "12.1.0",
"@angular-eslint/eslint-plugin": "12.1.0",
"@angular-eslint/eslint-plugin-template": "12.1.0",
"@angular-eslint/schematics": "12.1.0",
"@angular-eslint/template-parser": "12.1.0",
"@angular/cli": "~12.0.0",
"@angular/compiler-cli": "~12.0.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@cypress/webpack-preprocessor": "^5.4.11",
"@ngneat/spectator": "^7.1.0",
"@types/jest": "^26.0.23",
"@types/node": "^15.3.0",
"@typescript-eslint/eslint-plugin": "4.23.0",
"@typescript-eslint/parser": "4.23.0",
"all-contributors-cli": "^6.8.1",
"angular-cli-ghpages": "^0.6.2",
"codelyzer": "^6.0.0",
"cross-env": "^5.2.0",
"cypress": "^7.4.0",
"eslint": "^7.26.0",
"eslint-plugin-ban": "^1.5.2",
"git-cz": "^3.2.1",
"husky": "^3.0.1",
"jest": "^26.6.3",
"lint-staged": "^9.2.0",
"ng-packagr": "^12.0.0",
"prettier": "^1.18.2",
"serve": "^11.3.2",
"standard-version": "^6.0.1",
"start-server-and-test": "^1.12.2",
"ts-jest": "^26.5.6",
"ts-node": "~8.3.0",
"typescript": "~4.2.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,json,css,scss,ts,html,component.html}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "npm run hooks:pre-commit && lint-staged"
}
}
}