-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
63 lines (63 loc) · 1.74 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
{
"name": "angularjs-lazyload",
"version": "1.0.0",
"description": "Load AngularJS modules on demand via Webpack, UI Router and ocLazyLoad",
"scripts": {
"start": "webpack-dev-server --devtool inline-source-map --env.dev",
"build": "webpack --env.production",
"test": "eslint --report-unused-disable-directives --ext .js src/",
"heroku": "npm run build && node server.js",
"size": "size-limit",
"bundle-buddy": "bundle-buddy"
},
"repository": {
"type": "git",
"url": "https://github.com/var-bin/angularjs-lazyload.git"
},
"homepage": "https://github.com/var-bin/angularjs-lazyload",
"author": "Vitalii Rybka @var_bincom",
"license": "MIT",
"dependencies": {
"@uirouter/angularjs": "^1.0.11",
"angular": "^1.6.6",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"oclazyload": "^1.1.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.6.1",
"bundle-buddy": "^0.2.1",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.7",
"eslint": "^4.12.1",
"eslint-loader": "^1.9.0",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^2.30.1",
"npm-check-updates": "^2.13.0",
"raw-loader": "^0.5.1",
"size-limit": "^0.14.0",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.1.2",
"webpack-bundle-analyzer": "^2.9.2"
},
"keywords": [
"AngularJS",
"lazyLoad",
"webpack",
"ocLazyLoad",
"uiRouter"
],
"size-limit": [
{
"limit": "300 KB",
"webpack": false,
"path": "dist/*.js"
}
]
}