-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 3.02 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 3.02 KB
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
{
"name": "twitter-clone",
"version": "0.0.0",
"scripts": {
"packages:cycle": "rm -rdf node_modules && rm package-lock.json && npm install",
"ng": "npx ng",
"start": "npx ng serve --host 0.0.0.0",
"build": "npx ng build",
"test": "npx ng test --karma-config=src/karma/karma-cli.conf.js --code-coverage",
"test:debug": "npx ng test --code-coverage",
"test:ci": "npx ng test --karma-config=src/karma/karma-ci.conf.js --code-coverage --progress false",
"lint": "npx ng lint --lint-file-patterns=src/app/**/*.ts",
"format": "npx prettier 'src/**/*.{ts,tsx}' --write",
"gh-pages:build": "npm run gh-pages:clean && npm run gh-pages:bundle && npm run gh-pages:deploy",
"gh-pages:bundle": "npx ng build --configuration production --output-path docs --base-href https://mcknasty.github.io/twitter-angular-clone.github.io/",
"gh-pages:deploy": "npx gh-pages --dotfiles --message '[skip ci] New deploy to github pages' --dist docs/ --branch gh-pages",
"gh-pages:clean": "rm -rdf docs && mkdir docs && touch docs/.gitkeep && mkdir docs/assets && touch docs/assets/.gitkeep",
"circleci:local": "circleci local execute -v $(pwd):/tmp/repo local-build",
"circleci:validate": "circleci config validate",
"diff": "git diff ':!package-lock.json'"
},
"private": true,
"dependencies": {
"@angular-devkit/architect": "^0.1800.1",
"@angular/animations": "~18.0.1",
"@angular/common": "~21.0.1",
"@angular/core": "~18.0.1",
"@angular/forms": "~21.0.1",
"@angular/language-service": "~18.0.1",
"@angular/platform-browser": "~21.0.1",
"@angular/platform-browser-dynamic": "~21.0.1",
"@angular/router": "~21.0.1",
"angular-in-memory-web-api": "^0.21.0",
"ngx-pipes": "^3.2.0",
"rxjs": "^7.8.0",
"zone.js": "^0.14.6"
},
"devDependencies": {
"@angular-devkit/build-angular": "^21.1.3",
"@angular-devkit/schematics": "^18.0.2",
"@angular-eslint/builder": "~18.0.1",
"@angular-eslint/eslint-plugin": "~18.0.1",
"@angular-eslint/eslint-plugin-template": "~18.0.1",
"@angular-eslint/schematics": "~18.0.1",
"@angular-eslint/template-parser": "~18.0.1",
"@angular/compiler": "^18.0.1",
"@angular/compiler-cli": "^18.0.1",
"@types/jasmine": "^5.1.4",
"@types/karma": "^6.3.8",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-prettier": "^5.1.3",
"gh-pages": "6.1.1",
"jasmine-core": "^5.1.2",
"jasmine-spec-reporter": "~7.0.0",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.2.0",
"karma-fail-fast-reporter": "^1.0.5",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"karma-typescript": "^5.5.3",
"karma-verbose-reporter": "0.0.8",
"prettier": "^3.2.5",
"puppeteer": "^22.15.0",
"ts-node": "~10.9.2",
"typescript": "^5.4.5"
}
}