forked from lexon0011/IssueDemonstrator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.36 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.36 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
41
42
43
44
45
{
"name": "issuedemonstrator",
"description": "A test application that demonstrates issues",
"license": "UNLICENSED",
"version": "1.0.0",
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/lexon0011/IssueDemonstrator"
},
"scripts": {
"npm-install": "npm install",
"pwd": "echo %cd%",
"tsc": "tsc",
"tscw": "tsc -w",
"typings": "typings install",
"liveserver-dev": "live-server --open=static --entry-file=\"static/indexDev.html\" --ignorePattern=\".*\\.(ts|map)\"",
"liveserver-prod": "live-server --open=static --entry-file=\"static/indexProd.html\" --ignorePattern=\".*\\.(ts|map)\"",
"start-dev": "concurrent \"npm run typings\" \"npm run tscw\" \"npm run liveserver-dev\"",
"start-prod": "concurrent \"npm run typings\" \"npm run tscw\" \"npm run liveserver-prod\""
},
"engines": {
"node": ">=4.0.0",
"npm": ">=2.14.2"
},
"dependencies": {
"angular2": "2.0.0-beta.17",
"bootstrap": "3.3.6",
"crypto": "0.0.3",
"es6-promise": "3.1.2",
"es6-shim": "0.35.0",
"jquery": "2.2.3",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.6",
"systemjs": "0.19.26",
"zone.js": "0.6.12"
},
"devDependencies": {
"concurrently": "2.0.0",
"live-server": "1.0.0",
"typescript": "1.8.9",
"typings": "0.7.9",
"systemjs-builder": "0.15.15"
}
}