-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
83 lines (83 loc) · 2.72 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
{
"name": "ngx-darija",
"version": "1.2.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"lint": "ng lint",
"prepare-metadata": "dotenv node ./server/tools/prepare-metadata.js",
"prepare-data": "node ./server/tools/prepare-data.js",
"prepare-data:dev": "dotenv node ./server/tools/prepare-data.js",
"prerender": "start-server-and-test serve:function http://localhost:8889/.netlify/functions/playlist/ build",
"site": "npm run prepare-data && npm run prerender",
"site:dev": "dotenv npm run site",
"serve:function": "npx netlify-cli functions:serve -p 8889"
},
"private": true,
"dependencies": {
"@angular/animations": "^17.0.4",
"@angular/common": "^17.0.4",
"@angular/compiler": "^17.0.4",
"@angular/core": "^17.0.4",
"@angular/forms": "^17.0.4",
"@angular/platform-browser": "^17.0.4",
"@angular/platform-browser-dynamic": "^17.0.4",
"@angular/platform-server": "^17.0.4",
"@angular/router": "^17.0.4",
"@angular/service-worker": "^17.0.4",
"@angular/ssr": "^17.0.0",
"@angular/youtube-player": "^17.0.0",
"@justinribeiro/lite-youtube": "^1.3.1",
"@ngx-loading-bar/core": "^6.0.2",
"@ngx-loading-bar/router": "^6.0.2",
"algoliasearch": "^4.17.0",
"core-js": "2.4.1",
"express": "^4.17.1",
"fast-glob": "^3.2.7",
"front-matter": "^4.0.2",
"instantsearch.js": "4.25.0-experimental-typescript.0",
"marked": "^9.0.0",
"ngx-google-analytics": "^11.2.1",
"ngx-markdown": "^17.0.0",
"rxjs": "~7.5.1",
"tslib": "^2.3.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.3",
"@angular-eslint/builder": "17.1.0",
"@angular-eslint/eslint-plugin": "17.1.0",
"@angular-eslint/eslint-plugin-template": "17.1.0",
"@angular-eslint/schematics": "17.1.0",
"@angular-eslint/template-parser": "17.1.0",
"@angular/cli": "^17.0.3",
"@angular/compiler-cli": "^17.0.4",
"@ngx-env/builder": "^17.0.1-alpha.0",
"@types/express": "^4.17.13",
"@types/node": "^16.4.1",
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"dotenv-cli": "^4.0.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsdoc": "^43.1.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"fs-extra": "^10.0.0",
"husky": "^7.0.2",
"lint-staged": "11.1.0",
"node-fetch": "^2.6.1",
"prettier": "2.3.2",
"start-server-and-test": "^1.13.0",
"typescript": "~5.2.2"
},
"lint-staged": {
"*.{js,json,css,scss,less,md,ts,html,component.html}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix"
]
}
}