forked from jsverse/transloco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 4.45 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
{
"name": "transloco-playground",
"version": "0.0.0",
"scripts": {
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors init",
"hooks:pre-commit": "node hooks/pre-commit.js",
"release": "cd projects/ngneat/transloco/ && standard-version --infile ../../../CHANGELOG.md",
"commit": "git-cz",
"prettier": "prettier --write \"**/*.{js,json,css,scss,less,md,ts,html,component.html}\"",
"start": "ng serve --port 8889 --open",
"build": "ng build --prod && cp _redirects dist/transloco-playground/",
"build:lib": "ng build @ngneat/transloco && npm run schematics:build && npm run copy",
"build:persist-lang": "ng build @ngneat/transloco-persist-lang",
"build:persist-translations": "ng build @ngneat/transloco-persist-translations",
"build:messageformat": "ng build @ngneat/transloco-messageformat",
"build:preload-langs": "ng build @ngneat/transloco-preload-langs",
"build:locale": "ng build @ngneat/transloco-locale",
"build:utils": "ng build @ngneat/transloco-utils",
"test": "ng test @ngneat/transloco",
"test:persist-lang": "ng test @ngneat/transloco-persist-lang",
"test:persist-translations": "ng test @ngneat/transloco-persist-translations",
"test:locale": "ng test @ngneat/transloco-locale",
"test:messageformat": "ng test @ngneat/transloco-messageformat",
"test:playground": "ng test transloco-playground",
"test:all": "npm run test:headless & npm run e2e",
"test:headless": "cross-env CI=true npm run test",
"test:coverage": "npm run test:headless -- --code-coverage",
"schematics:watch": "cd ./schematics/ && npm link && cd .. && npm link transloco-schematics && npm run build --prefix ./schematics -- --watch",
"schematics:copy": "cp -r schematics/src/ dist/ngneat/transloco/schematics",
"schematics:build": "npm run build --prefix ./schematics",
"copy": "npm run schematics:copy && cp -r README.md dist/ngneat/transloco",
"e2e": "cypress open",
"e2e:headless": "cypress run",
"e2e:ci": "cross-env CYPRESS_BASE_URL=https://transloco.netlify.com cypress run",
"transloco:optimize": "transloco-optimize dist/transloco-playground/assets/i18n"
},
"dependencies": {
"@angular/animations": "~7.2.0",
"@angular/common": "~7.2.0",
"@angular/compiler": "~7.2.0",
"@angular/core": "~7.2.0",
"@angular/forms": "~7.2.0",
"@angular/platform-browser": "~7.2.0",
"@angular/platform-browser-dynamic": "~7.2.0",
"@angular/router": "~7.2.0",
"@ngneat/transloco-utils": "^1.0.6",
"core-js": "^2.5.4",
"flat": "^4.1.0",
"git-cz": "^3.2.1",
"lodash.omitby": "^4.6.0",
"messageformat": "2.3.0",
"rxjs": "~6.3.3",
"tslib": "^1.9.0",
"zone.js": "~0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.13.0",
"@angular-devkit/build-ng-packagr": "~0.13.0",
"@angular/cli": "~7.3.9",
"@angular/compiler-cli": "~7.2.0",
"@angular/language-service": "~7.2.0",
"@commitlint/cli": "8.1.0",
"@commitlint/config-angular": "8.1.0",
"@commitlint/config-conventional": "8.1.0",
"@cypress/webpack-preprocessor": "4.1.0",
"@ngneat/spectator": "^4.4.0",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"all-contributors-cli": "^6.8.1",
"codelyzer": "~4.5.0",
"copy": "^0.3.2",
"cross-env": "^5.2.0",
"cypress": "^3.4.1",
"husky": "^3.0.1",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"lint-staged": "9.2.0",
"ng-mocks": "^8.1.0",
"ng-packagr": "^4.2.0",
"ora": "^3.4.0",
"prettier": "1.18.2",
"protractor": "~5.4.0",
"replace-in-file": "^4.1.2",
"standard-version": "^6.0.1",
"ts-loader": "^6.0.4",
"ts-mocks": "^2.3.4",
"ts-node": "~7.0.0",
"tsickle": ">=0.34.0",
"tslib": "^1.9.0",
"tslint": "~5.11.0",
"typescript": "~3.2.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "npm run hooks:pre-commit && lint-staged",
"pre-push": "npm run test:headless"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,json,css,scss,less,md,ts,html,component.html}": [
"prettier --write",
"git add"
]
}
}