forked from DevCloudFE/ng-devui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·94 lines (94 loc) · 3.13 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
{
"name": "devui-components",
"version": "0.0.0-not-used",
"license": "MIT",
"description": "DevUI components based on Angular",
"engineStrict": true,
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"ng": "ng",
"start": "ng serve --open",
"build": "ng build --prod --deploy-url components/",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"lint:devui": "tslint -p devui/tsconfig.lint.json -c devui/tslint.json \"devui/**/*.ts\"",
"lint:devui:fix": "tslint --fix -p devui/tsconfig.lint.json -c devui/tslint.json \"*.ts\"",
"build:devui": "node --max_old_space_size=4096 ./node_modules/@angular/cli/bin/ng build devui-lib",
"postbuild": "node scripts/move-assets.js",
"postbuild:devui": "node scripts/copy-artifacts.js && npm run css-compile && npm run css-minify",
"css-compile": "node-sass --output-style expanded --precision 6 --importer scripts/node-sass.importer.js ./devui/style/devui.scss ./publish/devui.css",
"css-minify": "cleancss --format breakWith=lf --output ./publish/devui.min.css ./publish/devui.css"
},
"dependencies": {
"@angular/animations": "~7.2.0",
"@angular/cdk": "^7.3.7",
"@angular/common": "~7.2.0",
"@angular/compiler": "~7.2.0",
"@angular/core": "~7.2.0",
"@angular/forms": "~7.2.0",
"@angular/http": "~7.2.0",
"@angular/platform-browser": "~7.2.0",
"@angular/platform-browser-dynamic": "~7.2.0",
"@angular/router": "~7.2.0",
"@devui-design/icons": "^1.0.0",
"classlist.js": "^1.1.20150312",
"core-js": "^2.5.4",
"date-fns": "^1.30.1",
"lodash-es": "^4.17.11",
"popper.js": "^1.15.0",
"zone.js": "~0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.13.0",
"@angular-devkit/build-ng-packagr": "~0.13.0",
"@angular/cli": "~7.3.9",
"@angular/compiler-cli": "~7.2.0",
"@angular/language-service": "^7.2.15",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"clean-css-cli": "^4.3.0",
"codelyzer": "~4.5.0",
"highlight.js": "^9.15.8",
"html-loader": "^0.5.5",
"husky": "^2.2.0",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"lint-staged": "^9.2.3",
"lodash-es": "^4.17.11",
"markdown-loader": "^5.0.0",
"marked": "^0.6.2",
"ng-packagr": "^4.2.0",
"ngx-accordion": "^0.0.17",
"protractor": "~5.4.0",
"rxjs": "~6.3.3",
"shelljs": "^0.8.3",
"ts-node": "~7.0.0",
"tsickle": "^0.35.0",
"tslib": "^1.9.0",
"tslint": "~5.11.0",
"typescript": "~3.2.2"
},
"lint-staged": {
"devui/**/*.ts": [
"npm run lint:devui",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}