-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.29 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
{
"name": "office365-app",
"version": "1.0.0",
"description": "Office365App",
"main": "app.js",
"author": {
"name": "Radi Atanassov"
},
"scripts": {
"start": "tsc && concurrently \"tsc -w\"",
"lint": "tslint ./app/**/*.ts -t verbose",
"tsc": "tsc",
"tsc:w": "tsc -w",
"bundle": "rimraf build & tslint ./app/**/*.ts -t verbose & copyfiles -f ./index.html build/ & webpack -p",
"watch": "rimraf build & tslint ./app/**/*.ts -t verbose & copyfiles -f ./index.html build/ & webpack -p --watch",
"test": "mocha tests/all.spec.ts --require ts-node/register tests/**/*.spec.ts",
"server": "copyfiles -f ./index.html build/ & webpack-dev-server --progress --inline"
},
"dependencies": {
"angular": "^1.5.8",
"angular-route": "1.5.8"
},
"devDependencies": {
"webpack": "1.13.3",
"webpack-dev-server": "1.16.2",
"rimraf": "2.5.4",
"copyfiles": "1.0.0",
"tslint": "3.15.1",
"typescript": "2.0.9",
"ts-loader": "1.2.1",
"ngtemplate-loader": "1.3.1",
"html-loader": "0.4.4",
"less": "2.7.1",
"style-loader": "0.13.1",
"css-loader": "0.25.0",
"less-loader": "2.2.3",
"extract-text-webpack-plugin": "1.0.1",
"mocha": "3.1.2",
"ts-node": "1.7.0",
"angular-mocks": "^1.5.8",
"jsdom": "9.8.3"
}
}