-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 3.17 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
{
"name": "LazyLoadingTest",
"version": "0.0.1",
"description": "A proof of concept app for angularjs, lazy loading, webpack, typescript and uirouter",
"main": "index.js",
"author": "ramarivera",
"license": "MIT",
"scripts": {
"dev": "yarn && cross-env TS_NODE_PROJECT=\"./config/webpack.tsconfig.json\" webpack-dev-server --config ./config/base.webpack.config.ts",
"start": "yarn run dev",
"build": "yarn && cross-env TS_NODE_PROJECT=\"./config/webpack.tsconfig.json\" webpack --config ./config/base.webpack.config.ts"
},
"dependencies": {
"@uirouter/angularjs": "^1.0.22",
"@uirouter/core": "^5.0.23",
"angular": "^1.7.8",
"angular-animate": "^1.7.8",
"angular-sanitize": "^1.7.8",
"jquery": "^3.3.1",
"lodash": "^4.17.11",
"lodash-es": "^4.17.11",
"oclazyload": "^1.1.0"
},
"devDependencies": {
"@types/angular": "^1.6.5",
"@types/angular-animate": "^1.5.10",
"@types/angular-sanitize": "^1.3.7",
"@types/angular-ui-bootstrap": "^0.13.46",
"@types/copy-webpack-plugin": "^4.4.3",
"@types/del": "^4.0.0",
"@types/extract-text-webpack-plugin": "^3.0.4",
"@types/friendly-errors-webpack-plugin": "^0.1.1",
"@types/gulp": "^4.0.6",
"@types/gulp-filter": "^3.0.33",
"@types/gulp-rename": "^0.0.33",
"@types/gulp-template": "^5.0.1",
"@types/html-webpack-plugin": "^3.2.0",
"@types/http-server": "^0.10.0",
"@types/lodash": "^4.14.123",
"@types/node": "^9.4.6",
"@types/oclazyload": "^0.0.32",
"@types/ts-nameof": "^2.0.0",
"@types/webpack": "^4.4.25",
"@types/webpack-bundle-analyzer": "^2.13.1",
"@types/webpack-merge": "^4.1.3",
"@types/yargs": "^12.0.9",
"async-once": "^1.0.1",
"camelcase": "^5.2.0",
"clean-webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "^5.0.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"gulp": "^4.0.0",
"gulp-clean": "^0.4.0",
"gulp-filter": "^5.1.0",
"gulp-prettier": "^2.1.0",
"gulp-rename": "^1.4.0",
"gulp-template": "^5.0.0",
"gulp-tslint": "^8.1.4",
"gutil": "^1.6.4",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"js-beautify": "^1.9.0",
"prettier": "^1.16.4",
"script-loader": "^0.7.2",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.3",
"ts-nameof": "^3.0.1",
"ts-node": "^5.0.1",
"tsconfig-paths": "^3.8.0",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0",
"tslint-loader": "^3.5.4",
"typescript": "2.8.1",
"typescript-tslint-plugin": "^0.3.1",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^3.1.0",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.2.1",
"yargs": "^13.2.2"
}
}