-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpackage.json
executable file
·46 lines (46 loc) · 2.02 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
{
"name": "angular-library-seed-demo",
"description": "AOT/JIT/UMD build demo of angular library seed",
"license": "MIT",
"scripts": {
"build": "npm run build:aot && npm run build:jit && npm run build:umd",
"build:aot": "npm run build:aot:compile && npm run build:aot:bundle",
"build:aot:bundle": "webpack --config esm/webpack-aot.config.js --bail",
"build:aot:compile": "node_modules/.bin/ngc -p esm/tsconfig-aot.json",
"build:jit": "webpack --config esm/webpack.config.js --bail",
"build:umd": "npm run clean:umd && copyfiles --up 2 \"../dist/index.umd.*\" umd/lib",
"clean:all": "npm run clean:tmp && rimraf node_modules",
"clean:tmp": "npm run clean:esm:aot && npm run clean:esm:jit && npm run clean:umd && rimraf esm/dist",
"clean:esm:aot": "npm run clean:esm:tmp && rimraf esm/dist/aot",
"clean:esm:jit": "npm run clean:esm:tmp && rimraf esm/dist/jit",
"clean:esm:tmp": "rimraf esm/lib esm/node_modules esm/src/app/*.ngfactory.ts esm/src/app/*.ngsummary.json",
"clean:umd": "rimraf umd/lib",
"copy-lib": "copyfiles --up 2 \"../dist/**/*\" esm/lib",
"prebuild:aot": "npm run clean:esm:aot && npm run copy-lib",
"prebuild:jit": "npm run clean:esm:jit && npm run copy-lib",
"prestart": "npm run clean:esm:jit && npm run copy-lib",
"start": "concurrently --raw \"gulp copy-lib:watch\" \"webpack-dev-server --open --watch --config esm/webpack.config.js\""
},
"dependencies": {
"@angular/common": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0"
},
"devDependencies": {
"@angular/compiler": "^4.0.0",
"@angular/compiler-cli": "^4.0.0",
"awesome-typescript-loader": "^3.1.2",
"concurrently": "^3.4.0",
"copyfiles": "^1.2.0",
"core-js": "^2.4.1",
"gulp": "^3.9.1",
"html-webpack-plugin": "^2.8.1",
"rimraf": "^2.6.1",
"rxjs": "^5.2.0",
"typescript": "^2.2.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.4.5",
"zone.js": "^0.8.4"
}
}