-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.96 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
{
"name": "racer159-com",
"version": "1.2.0",
"author": "racer159",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"lint": "npm run lint:scss && npm run lint:ts",
"lint:scss": "npx stylelint \"**/*.scss\"",
"lint:ts": "eslint . --ext .js,.ts,.html",
"test": "ng test",
"e2e": "ng e2e",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"release": "rm -rf dist && git subtree add --prefix dist/racer159-com origin gh-pages && ng build && (cd dist/racer159-com; git add -f .) && (cd dist/racer159-com; git commit -m \"Build from $(git log '--format=format:%H' master -1)\") && git subtree push --prefix dist/racer159-com origin gh-pages && git reset --hard HEAD^"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.0.5",
"@angular/common": "^19.0.5",
"@angular/compiler": "^19.0.5",
"@angular/core": "^19.0.5",
"@angular/forms": "^19.0.5",
"@angular/platform-browser": "^19.0.5",
"@angular/platform-browser-dynamic": "^19.0.5",
"@angular/router": "^19.0.5",
"@microsoft/fast-components": "2.30.5",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.6",
"@angular/cli": "^19.0.6",
"@angular/compiler-cli": "^19.0.5",
"@cypress/schematic": "^2.0.2",
"@types/jasmine": "~4.0.3",
"@types/node": "^18.7.3",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"cypress": "latest",
"cypress-axe": "^1.0.0",
"eslint": "^8.22.0",
"eslint-plugin-html": "^7.1.0",
"jasmine-core": "~4.3.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"stylelint": "^14.10.0",
"stylelint-config-standard-scss": "^5.0.0",
"typescript": "~5.6.3"
}
}