-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
217 lines (217 loc) · 9.03 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
{
"name": "@sonia-corporation/ngx-achievements",
"version": "1.0.5",
"author": {
"email": "[email protected]",
"name": "Geoffrey 'C0ZEN' Testelin",
"url": "https://github.com/C0ZEN"
},
"contributors": [
{
"email": "[email protected]",
"name": "Geoffrey 'C0ZEN' Testelin",
"url": "https://github.com/C0ZEN"
}
],
"description": "The Sonia application in Angular for achievements",
"homepage": "https://github.com/Sonia-corporation/ngx-achievements",
"maintainers": [
{
"email": "[email protected]",
"name": "Geoffrey 'C0ZEN' Testelin",
"url": "https://github.com/C0ZEN"
}
],
"license": "MIT",
"keywords": [
"sonia",
"angular",
"achievements",
"nx",
"storybook"
],
"repository": {
"type": "git",
"url": "https://github.com/Sonia-corporation/ngx-achievements.git"
},
"bugs": {
"url": "https://github.com/Sonia-corporation/ngx-achievements/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./tools/commitizen.js"
}
},
"engines": {
"node": "14.17.x",
"npm": "7"
},
"private": false,
"scripts": {
"ng": "nx",
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2015 browser module main",
"nx": "nx",
"\n# RUN SCRIPTS:": "",
"start:website": "nx run website:serve --port 4200",
"start:website:fr": "nx run website:serve --configuration fr --port 4201",
"\n# BUILD SCRIPTS:": "",
"affected:apps": "nx affected:apps --parallel",
"affected:libs": "nx affected:libs --parallel",
"affected:build": "nx affected:build --parallel",
"affected:build-storybook": "nx affected:build-storybook --parallel",
"affected:dep-graph": "nx affected:dep-graph --parallel",
"build:website": "nx run website:build",
"build:website:gh-pages": "npm run clean:gh-pages && nx run website:build --output-path gh-pages --deploy-url deploy-url-to-replace/ && npm run build:website:gh-pages:set-deploy-url && npm run build:website:gh-pages:set-assets-url",
"build:website:gh-pages:set-deploy-url": "node tools/gh-pages/set-gh-pages-deploy-urls.js",
"build:website:gh-pages:set-assets-url": "node tools/gh-pages/set-assets-urls.js",
"build:website:i18n": "nx run website:extract-i18n",
"storybook:website": "nx run website:storybook",
"storybook:watch:website": "nx run website:watch-storybook",
"storybook:build:website": "nx run website:build-storybook",
"storybook:build-with-docs:website": "nx run website:build-storybook-with-docs",
"storybook:build-with-docs:website:gh-pages": "nx run website:build-storybook-with-docs-gh-pages",
"compodoc:website": "nx run website:compodoc",
"compodoc:website:watch:json": "nx run website:compodoc:json-watch",
"compodoc:website:serve": "open-cli http://localhost:4100/ && nx run website:compodoc:serve",
"compodoc:website:gh-pages": "nx run website:compodoc:gh-pages",
"\n# TEST SCRIPTS:": "",
"affected:e2e": "nx affected:e2e --parallel",
"affected:test": "nx affected:test --parallel",
"test:website": "nx run website:test",
"test:website:coverage": "nx run website:test --code-coverage",
"test:website:ci": "nx run website:test --bail 1 --ci",
"test:website:ci:coverage": "nx run website:test --code-coverage --bail 1 --ci",
"e2e:website": "nx run website-e2e:e2e",
"\n# LINT SCRIPTS:": "",
"affected:lint:ts": "nx affected:lint --parallel",
"affected:lint:ts:hook": "nx affected:lint --parallel --uncommitted",
"affected:lint:other": "prettier --write --ignore-unknown {apps,libs,tools}/**/*.{md,json,yml,html,webmanifest}",
"affected:lint:other:ci": "prettier --check --ignore-unknown {apps,libs,tools}/**/*.{md,json,yml,html,webmanifest}",
"affected:lint:all": "npm run lint:workspace && npm run affected:lint:ts && npm run affected:lint:other",
"affected:lint:all:hook": "npm run lint:workspace && npm run affected:lint:ts:hook && npm run affected:lint:other",
"lint:workspace": "prettier --write --ignore-unknown **/*.{md,json,yml,html,webmanifest} !apps !libs !tools",
"lint:workspace:ci": "prettier --check --ignore-unknown **/*.{md,json,yml,html,webmanifest} !apps !libs !tools",
"lint:website:ts": "nx lint website --fix --cache --cache-location apps/website/.eslintcache",
"lint:website:ts:ci": "nx lint website",
"lint:website:other": "prettier --write --ignore-unknown apps/website/**/*.{md,json,yml,html,webmanifest}",
"lint:website:other:ci": "prettier --check --ignore-unknown apps/website/**/*.{md,json,yml,html,webmanifest}",
"lint:all": "npm run concurrently -- \"npm run lint:workspace\" \"npm run lint:website:other\" \"npm run lint:website:ts\" --prefix-colors green,cyan,cyan --names workspace,website,website-ts",
"lint:all:ci": "npm run concurrently -- \"npm run lint:workspace:ci\" \"npm run lint:website:other:ci\" \"npm run lint:website:ts:ci\" --prefix-colors green,cyan,cyan --names workspace,website,website-ts",
"\n# UTILS SCRIPTS:": "",
"affected": "nx affected",
"workspace-generator": "nx workspace-generator",
"update": "nx migrate latest",
"dep-graph": "nx dep-graph",
"help": "nx help",
"cz": "git add . && git-cz && npm run git:push",
"semver": "semantic-release",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"commit": "npm run cz",
"git:push": "git push-upstream",
"prepare": "husky install",
"pre-commit": "lint-staged",
"commit-msg": "cross-env LOGGING_LEVEL=debug cz-customizable-ghooks",
"post-commit": "git update-index --again",
"install-git-hooks": "husky install && shx rm -rf .git/hooks && shx ln -s ../.husky .git/hooks",
"concurrently": "concurrently --kill-others-on-fail --prefix '[{name}][{time}]' --timestamp-format 'HH:mm:ss'",
"deploy": "cross-env NODE_DEBUG=gh-pages gh-pages -d gh-pages -t true",
"deploy:locally": "node tools/gh-pages/deploy-to-gh-pages.js",
"one-click-deploy": "npm run build:website:gh-pages && npm run deploy:locally",
"clean:gh-pages": "rimraf gh-pages"
},
"dependencies": {
"@angular/animations": "12.1.4",
"@angular/common": "12.1.4",
"@angular/compiler": "12.1.4",
"@angular/core": "12.1.4",
"@angular/forms": "12.1.4",
"@angular/platform-browser": "12.1.4",
"@angular/platform-browser-dynamic": "12.1.4",
"@angular/router": "12.1.4",
"@angular/service-worker": "12.1.4",
"@nrwl/angular": "12.7.1",
"lodash": "4.17.21",
"moment": "2.29.1",
"moment-timezone": "0.5.33",
"rxjs": "6.6.7",
"tslib": "2.3.1",
"zone.js": "0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "12.1.4",
"@angular-eslint/eslint-plugin": "12.3.1",
"@angular-eslint/eslint-plugin-template": "12.3.1",
"@angular-eslint/template-parser": "12.3.1",
"@angular/cli": "12.0.5",
"@angular/compiler-cli": "12.1.4",
"@angular/language-service": "12.1.4",
"@angular/localize": "12.1.4",
"@compodoc/compodoc": "1.1.15",
"@ngneat/tailwind": "7.0.3",
"@nrwl/cli": "12.7.1",
"@nrwl/cypress": "12.7.1",
"@nrwl/eslint-plugin-nx": "12.7.1",
"@nrwl/jest": "12.7.1",
"@nrwl/linter": "12.7.1",
"@nrwl/nx-cloud": "12.3.10",
"@nrwl/storybook": "12.7.1",
"@nrwl/tao": "12.7.1",
"@nrwl/workspace": "12.7.1",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.1",
"@semantic-release/github": "7.2.3",
"@sonia-corporation/conventional-changelog": "1.0.1",
"@storybook/addon-docs": "6.3.6",
"@storybook/addon-essentials": "6.3.6",
"@storybook/angular": "6.3.6",
"@storybook/builder-webpack5": "6.3.6",
"@storybook/manager-webpack5": "6.3.6",
"@tailwindcss/aspect-ratio": "0.2.1",
"@tailwindcss/forms": "0.3.3",
"@tailwindcss/line-clamp": "0.2.1",
"@tailwindcss/typography": "0.4.1",
"@twittwer/compodoc": "1.5.3",
"@types/fs-extra": "9.0.13",
"@types/jest": "27.0.2",
"@types/lodash": "4.14.174",
"@types/node": "14.17.18",
"@typescript-eslint/eslint-plugin": "4.28.5",
"@typescript-eslint/parser": "4.28.5",
"all-contributors-cli": "6.20.0",
"autoprefixer": "10.3.6",
"chalk": "4.1.2",
"commitizen": "4.2.4",
"concurrently": "6.3.0",
"cross-env": "7.0.3",
"cypress": "7.7.0",
"cz-customizable": "6.3.0",
"cz-customizable-ghooks": "2.0.0",
"dotenv": "10.0.0",
"eslint": "7.22.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "2.11.3",
"fs-extra": "9.1.0",
"gh-pages": "3.2.3",
"husky": "7.0.2",
"jest": "27.1.1",
"jest-preset-angular": "9.0.7",
"lint-staged": "11.1.2",
"node-notifier": "10.0.0",
"nx": "12.6.6",
"open-cli": "7.0.0",
"postcss": "8.3.5",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"semantic-release": "17.4.7",
"shx": "0.3.3",
"tailwindcss": "2.2.7",
"ts-jest": "27.0.5",
"ts-node": "9.1.1",
"tsconfig-paths-webpack-plugin": "3.5.1",
"typescript": "4.3.5"
}
}