This repository has been archived by the owner on Oct 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 2.34 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
{
"name": "ej-angular-demo",
"version": "20.4.0.38",
"scripts": {
"start": "node --max_old_space_size=4096 node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --progress --port 8080 --open",
"bundle": "rimraf dist && node --max_old_space_size=8192 .\\node_modules\\webpack\\bin\\webpack.js --config config/webpack.prod.js --progress",
"build": "npm run bundle & npm run copy-browser-source",
"lint": "tslint \"**/*.ts\" -c tslint.json -e \"node_modules/**\" -e \"app/services/**\" -e \"deps/**\"",
"copy-components": "xcopy app\\components dist\\app\\components /y /s /i",
"copy-content": "xcopy app\\content dist\\app\\content /y /s /i",
"copy-deps": "xcopy deps dist\\deps /y /s /i",
"copy-browser-source": "npm run copy-components & npm run copy-content & npm run copy-deps",
"copy-ej-themes": "xcopy \"node_modules\\syncfusion-javascript\\Content\\ej\\web\" deps\\css\\ej /y /s /i",
"postinstall": "npm run copy-ej-themes"
},
"dependencies": {
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/core": "5.0.0",
"@angular/forms": "5.0.0",
"@angular/http": "5.0.0",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"@angular/router": "5.0.0",
"@angular/upgrade": "5.0.0",
"classlist.js": "^1.1.20150312",
"core-js": "^2.5.1",
"reflect-metadata": "^0.1.10",
"rxjs": "5.5.2",
"zone.js": "^0.8.4",
"jquery-validation": "^1.16.0",
"bootstrap": "^3.3.6",
"ej-angular2": "^16.3.21",
"syncfusion-javascript": "^16.3.21",
"codemirror": "^5.40.2"
},
"devDependencies": {
"@types/ej.web.all": "^16.3.0",
"@types/jquery": "2.0.34",
"@types/node": "6.0.52",
"angular2-router-loader": "0.3.5",
"angular2-template-loader": "0.6.2",
"awesome-typescript-loader": "^3.3.0",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "~2.1.2",
"file-loader": "~0.11.1",
"html-loader": "~0.4.5",
"html-webpack-plugin": "^2.16.1",
"null-loader": "^0.1.1",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"tslint": "^3.15.1",
"typescript": "2.4.2",
"uglifyjs-webpack-plugin": "^1.0.0-beta.1",
"url-loader": "^0.5.8",
"webpack": "~2.7.0",
"webpack-dev-server": "~2.4.5",
"webpack-merge": "~4.1.0"
}
}