-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.08 KB
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
{
"name": "lodash-quiz",
"version": "1.0.0",
"author": "Andrew Motoshin",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:htmlhero/lodash-quiz.git"
},
"keywords": [
"lodash",
"quiz"
],
"type": "module",
"engines": {
"node": "v24.12.0",
"npm": "11.6.2"
},
"scripts": {
"start": "npm run generate && ng serve",
"build": "npm run generate && ng build",
"generate": "node scripts/generate.js"
},
"dependencies": {
"@angular/common": "21.2.1",
"@angular/compiler": "21.2.1",
"@angular/core": "21.2.1",
"@angular/forms": "21.2.1",
"@angular/platform-browser": "21.2.1",
"@angular/router": "21.2.1",
"lodash-es": "4.17.23",
"marked": "17.0.4",
"rxjs": "7.8.2",
"tslib": "2.8.1"
},
"devDependencies": {
"@angular/build": "21.2.1",
"@angular/cli": "21.2.1",
"@angular/compiler-cli": "21.2.1",
"@types/lodash-es": "4.17.12",
"@types/marked": "5.0.2",
"jsdoc-to-markdown": "9.1.3",
"lodash": "4.17.23",
"prettier": "3.8.1",
"typescript": "5.9.3"
}
}