-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·87 lines (87 loc) · 2.9 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
{
"name": "formly-editor",
"version": "0.0.0",
"description": "A tool used to create/edit formly forms",
"author": "Samuel Esan",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --configuration production",
"build:editor": "ng build editor --configuration production",
"test": "ng test",
"e2e": "ng e2e",
"lint:app": "ng lint formly-editor --fix",
"lint:editor": "ng lint editor --fix",
"pretty": "prettier --write \"./**/*.{ts,js,json,html}\"",
"build-tailwind-css": "tailwindcss -c ./projects/editor/tailwind.lib.config.js -o ./projects/editor/assets/styles/tailwind.scss"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.0.1",
"@angular/cdk": "^18.0.1",
"@angular/common": "^18.0.1",
"@angular/compiler": "^18.0.1",
"@angular/core": "^18.0.1",
"@angular/forms": "^18.0.1",
"@angular/material": "^18.0.1",
"@angular/material-moment-adapter": "^18.0.1",
"@angular/platform-browser": "^18.0.1",
"@angular/platform-browser-dynamic": "^18.0.1",
"@angular/router": "^18.0.1",
"@ng-dnd/core": "^3.0.0",
"@ng-dnd/multi-backend": "^3.0.0",
"@ngrx/store": "^18.0.1",
"@ngx-formly/bootstrap": "^6.3.2",
"@ngx-formly/core": "^6.3.2",
"@ngx-formly/material": "^6.3.2",
"bootstrap": "^5.3.3",
"codemirror": "^5.65.16",
"file-saver-es": "2.0.5",
"immer": "^10.1.1",
"lodash-es": "4.17.21",
"nanoid": "^5.0.7",
"rxjs": "^7.8.1",
"tslib": "2.6.2",
"zone.js": "0.14.6"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.2",
"@angular-eslint/builder": "^18.0.1",
"@angular-eslint/eslint-plugin": "^18.0.1",
"@angular-eslint/eslint-plugin-template": "^18.0.1",
"@angular-eslint/schematics": "^18.0.1",
"@angular-eslint/template-parser": "^18.0.1",
"@angular/cli": "^18.0.2",
"@angular/compiler-cli": "^18.0.1",
"@angular/localize": "^18.0.1",
"@types/codemirror": "^5.60.15",
"@types/file-saver-es": "^2.0.3",
"@types/jasmine": "~5.1.4",
"@types/jasminewd2": "~2.0.13",
"@types/lodash-es": "^4.17.12",
"@types/node": "20.13.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"autoprefixer": "^10.4.19",
"codelyzer": "6.0.2",
"eslint": "^8.56.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "48.2.7",
"eslint-plugin-ngrx": "^2.1.4",
"eslint-plugin-prefer-arrow": "1.2.3",
"jasmine-core": "~5.1.2",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.3",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"ng-packagr": "^18.0.0",
"postcss": "^8.4.38",
"prettier": "^3.3.0",
"protractor": "~7.0.0",
"tailwindcss": "^3.4.3",
"ts-node": "~10.9.2",
"typescript": "5.4.5"
}
}