-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.18 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
{
"name": "VitrualDog",
"version": "0.0.1",
"description": "App to demo AngularJs and associated techs",
"main": "index.js",
"devDependencies": {
"angular-mocks": "~1.3.15",
"gulp": "^3.9.1",
"http-server": "^0.12.3",
"jasmine": "^2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-jasmine": "^0.3.8",
"karma-phantomjs-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.26",
"node-promise": "^0.5.12",
"phantomjs-prebuilt": "^2.1.7",
"typings": "^1.3.1"
},
"dependencies": {
"bluebird": "^3.3.5",
"concurrently": "^2.0.0",
"node-rest-client": "^1.8.0",
"npm": "^7.19.1"
},
"scripts": {
"prestart": "concurrently \"bower install\" \"typings install\" ",
"start": "tsc & concurrently --prefix-length 16 --prefix command \"http-server -a 0.0.0.0 -p 8042\" \"node server/tinyserv\" \"tsc -w\" ",
"bower-typings": "concurrently \"bower install\" \"typings install\" ",
"bower": "bower install",
"typings": "typings install",
"tinyserv": "node server/tinyserv",
"postinstall": "concurrently \"bower install\" \"typings install\" "
},
"author": "Tony Curtis",
"license": "MIT"
}