forked from rsparrow/angular-material-typescript-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.51 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
{
"name": "application-name",
"description": "A template for Angular 1, Angular Material, and TypeScript and New Router using NPM and Webkit for packaging. It's also compatible with live editing in webstorm and intellij.",
"version": "0.0.1",
"author": "Richard Sparrow <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/"
},
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --config webpack/webpack.dev.js --content-base src/ --inline --hot --progress --NODE_ENV=dev",
"test": "karma start --NODE_ENV=test",
"build": "webpack --config webpack/webpack.build.js --NODE_ENV=production",
"postinstall": "typings i"
},
"dependencies": {
"angular": "^1.5.8",
"angular-animate": "^1.5.8",
"angular-aria": "^1.5.8",
"angular-material": "^1.1.1",
"angular-material-icons": "^0.7.1",
"angular-ui-router": "^1.0.0-beta.2",
"jquery": "^3.1.0"
},
"devDependencies": {
"angular-mocks": "^1.5.8",
"browser-sync": "^2.15.0",
"browser-sync-webpack-plugin": "^1.1.2",
"css-loader": "^0.25.0",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"node-sass": "^3.9.3",
"raw-loader": "^0.5.1",
"reload-html-webpack-plugin": "^0.1.2",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"ts-loader": "^0.8.2",
"typescript": "^1.8.10",
"typings": "^1.3.3",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.1",
"webpack-hot-middleware": "^2.12.2"
}
}