-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.1 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
{
"name": "typescript-angular",
"version": "0.1.0",
"description": "Sample AngularJS App with some TypeScript best practices",
"author": "Joachim Prinzbach",
"scripts": {
"start": "webpack-dev-server --progress --colors",
"build": "webpack",
"typings": "typings",
"postinstall": "npm run typings -- install",
"test": "karma start",
"deploy": "gh-pages -d build"
},
"dependencies": {
"angular": "1.5.8",
"angular-animate": "1.5.8",
"angular-aria": "1.5.8",
"angular-material": "1.1.1"
},
"devDependencies": {
"angular-mocks": "1.5.8",
"awesome-typescript-loader": "2.1.1",
"css-loader": "0.23.1",
"gh-pages": "0.11.0",
"html-webpack-plugin": "2.22.0",
"jasmine-core": "2.5.0",
"karma": "1.2.0",
"karma-jasmine": "1.0.2",
"karma-phantomjs-launcher": "1.0.2",
"karma-webpack": "1.8.0",
"phantomjs-prebuilt": "2.1.12",
"style-loader": "0.13.1",
"typescript": "1.8.10",
"typings": "1.3.2",
"webpack": "1.13.1",
"webpack-dev-server": "1.14.1",
"webpack-merge": "0.14.1",
"webpack-validator": "2.2.7"
}
}