-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 2.7 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "myneworm",
"version": "1.2.1",
"private": true,
"scripts": {
"ng": "ng",
"start": "npm run start:local",
"start:local": "ng serve --configuration local",
"start:test": "ng serve --configuration testing",
"start:stage": "ng serve --configuration staging",
"start:prod": "ng serve --configuration production",
"build": "ng build",
"build:local": "ng build --configuration local",
"build:test": "ng build --configuration testing",
"build:stage": "ng build --configuration staging",
"build:prod": "ng build --configuration production",
"lint": "eslint .",
"test": "ng test",
"e2e": "ng e2e",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"prettier": "prettier --write .",
"prepare": "husky install"
},
"author": {
"name": "Frederick Katsura",
"email": "[email protected]"
},
"contributors": [
{
"name": "Frederick Katsura",
"email": "[email protected]"
},
{
"name": "Katsurin Studios",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Butterstroke/Myneworm.git"
},
"bugs": {
"url": "https://github.com/Butterstroke/Myneworm/issues",
"email": "[email protected]"
},
"lint-staged": {
"*.{js,json,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix --quiet"
]
},
"license": "GPLv3",
"dependencies": {
"@angular/animations": "^17.3.7",
"@angular/cdk": "^17.3.7",
"@angular/common": "^17.3.7",
"@angular/compiler": "^17.3.7",
"@angular/core": "^17.3.7",
"@angular/forms": "^17.3.7",
"@angular/material": "^17.3.7",
"@angular/platform-browser": "^17.3.7",
"@angular/platform-browser-dynamic": "^17.3.7",
"@angular/router": "^17.3.7",
"@fullcalendar/angular": "^6.1.10",
"@fullcalendar/core": "^6.1.11",
"@fullcalendar/daygrid": "^6.1.11",
"@fullcalendar/interaction": "^6.1.11",
"@fullcalendar/list": "^6.1.11",
"bootstrap": "^5.3.3",
"jquery": "^3.7.1",
"moment": "^2.30.1",
"normalize.css": "^8.0.1",
"rxjs": "^7.8.1",
"tslib": "^2.6.2",
"zone.js": "^0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.6",
"@angular/compiler-cli": "^17.3.7",
"@types/jasmine": "^5.1.4",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"jasmine-core": "^5.1.2",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"lint-staged": "^15.2.4",
"prettier": "^3.2.5",
"protractor": "~7.0.0",
"ts-node": "^10.9.2",
"typescript": "5.2.2"
}
}