-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.66 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
{
"name": "tic-tac-toe-angular",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "jest --config ./jest.config.js --watch",
"test:unit": "jest --config ./jest.config.js",
"prettier:check": "prettier --config .prettierrc --check \"src/**/*.{ts,css,html}\"",
"prepare": "husky install",
"e2e": "ng e2e",
"cypress:open": "ng run tic-tac-toe-angular:cypress-open",
"cypress:run": "ng run tic-tac-toe-angular:cypress-run"
},
"private": true,
"dependencies": {
"@angular/animations": "~13.3.0",
"@angular/common": "~13.3.0",
"@angular/compiler": "~13.3.0",
"@angular/core": "~13.3.0",
"@angular/forms": "~13.3.0",
"@angular/platform-browser": "~13.3.0",
"@angular/platform-browser-dynamic": "~13.3.0",
"@angular/router": "~13.3.0",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/jest": "^13.0.3",
"@angular-devkit/build-angular": "~13.3.3",
"@angular/cli": "~13.3.3",
"@angular/compiler-cli": "~13.3.0",
"@cypress/schematic": "^1.6.0",
"@testing-library/angular": "^11.0.4",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^27.4.1",
"@types/node": "^12.11.1",
"cypress": "latest",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-preset-angular": "^11.1.1",
"lint-staged": "^12.3.8",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"typescript": "~4.6.2"
},
"lint-staged": {
"*.{js,css,md,ts,html}": "prettier --write"
}
}