-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 962 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 962 Bytes
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
{
"name": "webpack-angular",
"version": "1.0.0",
"description": "Example of using webpack with an angular project for an loftblog lesson",
"main": "app/index.js",
"repository": "https://github.com/Severenit/angular-webpack.git",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node node_modules/.bin/webpack-dev-server --content-base app",
"build": "NODE_ENV=production node node_modules/.bin/webpack && cp app/index.html dist/index.html"
},
"keywords": [
"webpack",
"angular",
"loftblog"
],
"author": "Zar Zakharov",
"license": "MIT",
"devDependencies": {
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"css-loader": "^0.19.0",
"node-sass": "^3.3.3",
"raw-loader": "^0.5.1",
"sass-loader": "^2.0.1",
"style-loader": "^0.12.4",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.11.0"
},
"dependencies": {
"angular": "^1.5.0-beta.0"
}
}