-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 998 Bytes
/
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
{
"name": "silex",
"version": "0.0.3",
"description": "This is a Typescript MongoDB integration for my Raspberry Pi Kubernetes",
"author": "Benjamin Haegenlaeuer <[email protected]>",
"main": "dist/app.js",
"scripts": {
"test-local": "npm run compile & NODE_ENV=testing& mocha ./dist/*spec.js",
"start": "node ./dist/app.js",
"compile": "tsc -p ./src",
"deploy": "npm run compile& node ./dist/app.js",
"play": "SET NODE_ENV=testing& node ./dist/app.js",
"test-ci": "export NODE_ENV=testing && mocha --exit ./dist/*spec.js"
},
"dependencies": {
"express": "^4.16.4",
"express-async-handler": "^1.1.4",
"is-port-reachable": "^2.0.0",
"mongodb": "^3.1.10",
"net": "^1.0.2",
"typescript": "^3.2.2"
},
"devDependencies": {
"@types/node": "^10.12.18",
"assert": "^1.4.1",
"mocha": "^5.2.0",
"mocha-typescript": "^1.1.17",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"typescript-logging": "^0.6.3"
}
}