-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.63 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
{
"name": "cypress-testing-template",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"lint": "eslint --ext .js,.ts,.html --fix src",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"prepack": "npx husky install",
"cypress:open": "cypress open",
"cypress:run": "cypress run --browser chrome"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.4",
"@angular/common": "^15.2.4",
"@angular/compiler": "^15.2.4",
"@angular/core": "^15.2.4",
"@angular/forms": "^15.2.4",
"@angular/platform-browser": "^15.2.4",
"@angular/platform-browser-dynamic": "^15.2.4",
"@angular/router": "^15.2.4",
"@tailwindcss/forms": "^0.5.3",
"rxjs": "~7.5.7",
"tslib": "^2.4.1",
"zone.js": "~0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.4",
"@angular-eslint/eslint-plugin": "^15.2.1",
"@angular-eslint/eslint-plugin-template": "^15.2.1",
"@angular-eslint/template-parser": "^15.2.1",
"@angular/cli": "^15.2.4",
"@angular/compiler-cli": "^15.2.4",
"@faker-js/faker": "^7.6.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"autoprefixer": "^10.4.14",
"cypress": "^12.8.1",
"eslint": "^8.36.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^40.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^8.0.3",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"prettier-eslint": "^15.0.1",
"tailwindcss": "^3.2.7",
"typescript": "~4.8.2"
}
}