-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.15 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
{
"name": "gomoku",
"version": "0.0.2",
"description": "Gomoku is a game that is played on a 15x15 board. The goal is to get 5 pieces in a row. The first player to get 5 pieces in a row wins.",
"author": "Tien Dat Huynh <[email protected]>",
"scripts": {
"ng": "ng",
"start": "ng serve --port 3000 --open",
"build": "ng build",
"publish": "bash ./scripts/publish.sh",
"test": "ng test",
"prepare": "husky install",
"commit": "git-cz"
},
"private": true,
"dependencies": {
"@angular/animations": "15.1.0",
"@angular/cdk": "15.1.5",
"@angular/common": "15.1.0",
"@angular/compiler": "15.1.0",
"@angular/core": "15.1.0",
"@angular/forms": "15.1.0",
"@angular/platform-browser": "15.1.0",
"@angular/platform-browser-dynamic": "15.1.0",
"@angular/router": "15.1.0",
"@angular/service-worker": "15.1.0",
"@capacitor/clipboard": "4.1.0",
"@capacitor/core": "4.6.3",
"@capacitor/preferences": "4.0.2",
"@ngneat/hot-toast": "5.0.1",
"@ngneat/transloco": "4.2.2",
"daisyui": "2.50.2",
"lodash": "4.17.21",
"moment": "2.29.4",
"rxjs": "~7.8.0",
"tslib": "2.3.0",
"zone.js": "~0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "15.1.6",
"@angular/cli": "~15.1.6",
"@angular/compiler-cli": "15.1.0",
"@commitlint/cli": "17.4.4",
"@commitlint/config-conventional": "17.4.4",
"@commitlint/cz-commitlint": "17.4.4",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/line-clamp": "0.4.2",
"@tailwindcss/typography": "0.5.9",
"@types/jasmine": "~4.3.0",
"@types/lodash": "4.14.191",
"@typescript-eslint/eslint-plugin": "5.52.0",
"@typescript-eslint/parser": "5.52.0",
"chroma-js": "2.4.2",
"commitizen": "4.3.0",
"eslint": "8.34.0",
"husky": "8.0.3",
"jasmine-core": "~4.5.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"tailwindcss": "3.2.7",
"typescript": "~4.9.4"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}