-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
36 lines (36 loc) · 1.08 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
{
"name": "ui-router",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"build": "webpack",
"dev": "webpack-dev-server --devtool eval --progress --colors --content-base build",
"demo": " NODE_ENV=demo webpack-dev-server --devtool eval --progress --colors --content-base build",
"deploy": "NODE_ENV=production webpack --config webpack.production.config.js",
"deploy_demo": "NODE_ENV=demo webpack --config webpack.production.config.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^5.1.9",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"css-loader": "^0.23.1",
"file-loader": "^0.8.5",
"html-loader": "^0.4.0",
"ng-annotate-webpack-plugin": "^0.1.2",
"node-sass": "^3.4.2",
"raw-loader": "^0.5.1",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.11",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"angular": "^1.4.8",
"angular-ui-router": "0.2.15",
"oclazyload": "^1.0.9"
}
}