This repository was archived by the owner on May 3, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.55 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.55 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
46
47
48
49
50
{
"name": "ARSignageBackendAPI",
"version": "0.9.0",
"description": "Node.js backend and Rest-API for the AdventureRooms digital signage suite written in TypeScript",
"main": "dist/index.js",
"author": "David Schmid",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/hexcodech/ar-signage-backend.git"
},
"scripts": {
"start": "set NODE_ENV=production&& node dist/index.js",
"startDocker": "docker run -p 4100:4100 ts_node_template",
"build": "set NODE_ENV=production&& gulp build",
"buildDocker": "gulp checkRepoKey && docker build -t ts_node_template .",
"serve": "set NODE_ENV=development&& gulp default",
"test": "set NODE_ENV=testing&& mocha --reporter spec --compilers ts:ts-node/register test/**/*.test.ts"
},
"dependencies": {
"body-parser": "^1.17.2",
"class-transformer": "^0.1.7",
"cors": "^2.8.4",
"es6-shim": "^0.35.3",
"express": "^4.15.3",
"global": "^4.3.2",
"mime-types": "^2.1.16",
"morgan": "^1.8.2",
"reflect-metadata": "^0.1.10",
"socket.io": "^2.0.3"
},
"devDependencies": {
"@types/body-parser": "^1.16.4",
"@types/chai": "^4.0.1",
"@types/chai-http": "^0.0.30",
"@types/express": "^4.0.36",
"@types/mocha": "^2.2.41",
"@types/morgan": "^1.7.32",
"@types/node": "^8.0.20",
"chai": "^4.0.2",
"chai-http": "^3.0.0",
"gulp": "^3.9.1",
"gulp-tslint": "^8.1.1",
"gulp-typescript": "^3.1.7",
"mocha": "^3.4.2",
"ts-node": "^3.1.0",
"tslint": "^5.5.0",
"typescript": "^2.4.1"
}
}