-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.15 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.15 KB
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": "angular-typescript-webpack-seed",
"version": "1.0.0",
"description": "AngularJS 1.5 with TypeScript and Webpack",
"repository": {},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf ./public && find ./src -type f -name '*.js*' | xargs rm -f",
"build": "webpack",
"clean-build": "npm run clean && npm run build",
"dev": "webpack-dev-server --inline --content-base build/"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"angular": "^1.5.8",
"bootstrap-less": "^3.3.8",
"css-loader": "^0.23.1",
"file-loader": "^0.9.0",
"font-awesome": "^4.6.3",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.22.0",
"jasmine-core": "^2.4.1",
"karma": "^1.1.2",
"karma-chrome-launcher": "^1.0.1",
"karma-jasmine": "^1.0.2",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"ng-annotate-loader": "^0.1.1",
"ngtemplate-loader": "^1.3.1",
"style-loader": "^0.13.1",
"ts-loader": "^0.8.2",
"typescript": "^1.8.10",
"url-loader": "^0.5.7",
"webpack": "^1.13.1"
}
}