forked from coreui/coreui-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.13 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.13 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
{
"name": "@coreui/angular-dev",
"version": "2.0.0-beta.0",
"devDependencies": {
"@angular/common": "5.2.6",
"@angular/compiler": "^5.2.6",
"@angular/compiler-cli": "^5.2.6",
"@angular/core": "5.2.6",
"@angular/platform-browser": "5.2.6",
"@angular/platform-browser-dynamic": "5.2.6",
"@angular/router": "5.2.6",
"@coreui/coreui": "^2.0.0-beta.4",
"@types/chai": "^4.1.2",
"@types/jasmine": "^2.8.6",
"@types/webpack": "^3.8.8",
"codelyzer": "^4.1.0",
"copyfiles": "^1.2.0",
"core-js": "2.5.3",
"nodemon": "^1.15.1",
"rxjs": "5.5.6",
"tslint": "^5.9.1",
"typescript": "2.5.3",
"zone.js": "0.8.20"
},
"scripts": {
"compile": "node_modules/.bin/ngc -p src/tsconfig.json",
"dist": "npm run compile && npm run lint && npm run htmlcopy && npm run jsoncopy",
"htmlcopy": "copyfiles -u 1 src/**/*.html dist",
"jsoncopy": "copyfiles -u 1 src/package.json dist",
"lint": "tslint -c tslint.json 'src/**/*.ts' --force",
"tsc": "tsc",
"watch": "nodemon --ignore dist/ -e ts -x npm run dist"
},
"main": "dist/",
"files": [
"dist/",
"src/"
]
}