forked from brechtbilliet/angular-typescript-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.69 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
{
"name": "angular-typescript-webpack",
"version": "0.1.2",
"description": "A seed project for a largescale angular architecture in webpack and typescript",
"main": "/",
"scripts": {
"start": "webpack --config webpack/webpack.dev.js --watch --NODE_ENV=dev",
"test": "karma start --NODE_ENV=test",
"build": "webpack --config webpack/webpack.build.js --NODE_ENV=production",
"postinstall": "typings i"
},
"author": "Brecht Billiet <[email protected]>",
"license": "MIT",
"dependencies": {
"angular": "1.5.5",
"angular-route": "1.5.5",
"bootstrap": "3.3.6",
"font-awesome": "4.6.1",
"jquery": "2.2.4",
"lodash": "4.12.0"
},
"devDependencies": {
"angular-mocks": "1.5.5",
"babel-core": "6.9.0",
"babel-istanbul": "0.8.0",
"browser-sync": "2.12.8",
"browser-sync-webpack-plugin": "1.0.1",
"compression-webpack-plugin": "0.3.1",
"css-loader": "0.23.1",
"file-loader": "0.8.5",
"html-webpack-plugin": "2.17.0",
"istanbul": "0.4.3",
"istanbul-instrumenter-loader": "0.2.0",
"jasmine": "2.4.1",
"karma": "0.13.22",
"karma-coverage": "1.0.0",
"karma-jasmine": "1.0.2",
"karma-phantomjs-launcher": "1.0.0",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-typescript-preprocessor": "0.2.0",
"karma-webpack": "1.7.0",
"node-sass": "3.7.0",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "2.1.7",
"raw-loader": "0.5.1",
"sass-loader": "3.2.0",
"style-loader": "0.13.1",
"ts-loader": "0.8.2",
"typescript": "1.8.10",
"typings": "1.0.4",
"url-loader": "0.5.7",
"wallaby-webpack": "0.0.22",
"webpack": "1.13.1"
}
}