-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.56 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
{
"name": "ng-parse-webpack-demo",
"version": "0.9.0",
"description": "An example application using angular, the parse-server module and webpack to bundle all the amazing stuffs together",
"repository": {
"type": "git",
"url": "https://github.com/maninga/ng-parse-webpack-demo"
},
"license": "MIT",
"dependencies": {
"angular": "^1.5.5",
"angular-animate": "^1.5.5",
"angular-i18n": "^1.5.5",
"angular-ui-bootstrap": "^1.3.2",
"angular-ui-layout": "^1.4.2",
"angular-ui-router": "^0.2.18",
"babel-polyfill": "^6.7.4",
"bluebird": "^3.3.5",
"bootstrap": "^3.3.6",
"express": "^4.13.4",
"kerberos": "0.0.20",
"lodash": "^4.11.1",
"moment": "^2.13.0",
"morgan": "^1.7.0",
"ng-file-upload": "^12.0.4",
"parse": "^1.8.3",
"parse-server": "^2.2.7",
"qs": "^6.1.0"
},
"scripts": {
"prestart": "rimraf dist",
"start": "webpack --watch --progress --config task/webpack.config.server.js",
"www": "webpack --watch --progress --config task/webpack.config.web.js",
"www.prod": "webpack --watch --progress --config task/webpack.config.web.prod.js "
},
"engines": {
"node": ">=4.3"
},
"devDependencies": {
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-async-to-bluebird": "^1.0.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"bootstrap-sass": "^3.3.6",
"bootstrap-sass-loader": "^1.0.10",
"compass-mixins": "^0.12.7",
"copy-webpack-plugin": "^2.1.3",
"css-loader": "^0.23.1",
"debug": "^2.2.0",
"eslint": "^2.8.0",
"eslint-config-angular": "^0.5.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-angular": "^1.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"gulp": "^3.9.1",
"html-loader": "^0.4.3",
"json-loader": "^0.5.4",
"ng-annotate-loader": "^0.1.0",
"ng-annotate-webpack-plugin": "^0.1.2",
"node-libs-browser": "^1.0.0",
"node-sass": "^3.6.0",
"npm-install-webpack-plugin": "^3.1.0",
"null-loader": "^0.1.1",
"postcss-loader": "^0.8.2",
"raw-loader": "^0.5.1",
"reload-server-webpack-plugin": "^1.0.1",
"rimraf": "^2.5.2",
"sass-loader": "^3.2.0",
"source-map-support": "^0.4.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0",
"webpack-notifier": "^1.3.0"
}
}