-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 2.06 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
{
"name": "ng-codemirror-demo",
"version": "18.1.4",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build ng-codemirror --configuration production && cpx \"./src/*.scss\" dist/ng-codemirror/",
"test": "ng test ng-codemirror",
"lint": "ng lint",
"e2e": "ng e2e",
"release": "wpm release",
"pub": "wpm publish && npm run pub-only",
"pub-only": "cd dist/ng-codemirror && npm publish --access public",
"pub-next": "wpm publish && npm run pub-only-next",
"pub-only-next": "cd dist/ng-codemirror && npm publish --tag next --access public"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.0",
"@angular/common": "^18.2.0",
"@angular/compiler": "^18.2.0",
"@angular/core": "^18.2.0",
"@angular/forms": "^18.2.0",
"@angular/platform-browser": "^18.2.0",
"@angular/platform-browser-dynamic": "^18.2.0",
"@angular/router": "^18.2.0",
"@ant-design/icons-angular": "~18.0.0",
"@codemirror/language-data": "^6.5.1",
"@codemirror/state": "^6.5.0",
"@codemirror/theme-one-dark": "^6.1.2",
"@uiw/codemirror-theme-material": "^4.23.0",
"codemirror": "^6.0.1",
"date-fns": "^2.29.3",
"ng-zorro-antd": "~18.0.0",
"rxjs": "~6.6.7",
"tslib": "^2.3.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.0",
"@angular/cli": "^18.2.0",
"@angular/compiler-cli": "^18.2.0",
"@angular/language-service": "^18.2.0",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"@worktile/pkg-manager": "^0.0.9",
"codelyzer": "^6.0.0",
"cpx": "^1.5.0",
"jasmine": "~4.0.0",
"jasmine-core": "~4.0.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"ng-packagr": "^18.2.0",
"protractor": "~7.0.0",
"ts-node": "~7.0.0",
"tslint": "~6.1.0",
"typescript": "~5.5.4"
}
}