-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.21 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
44
45
46
47
48
49
50
51
{
"name": "image-recognizer",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"author": "rainu <[email protected]> (http://github.com/rainu)",
"license": "MIT",
"scripts": {
"start": "npm run build:live",
"test": "CFG_LOG_LEVEL=quiet nyc --reporter=text-summary mocha -r ts-node/register test/**/*.ts",
"build": "tsc -p . && webpack --target node --mode development ./out_js/index.js",
"build:live": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.1",
"assert": "^2.0.0",
"mocha": "^6.2.0",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"shebang-loader": "0.0.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.3",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"aws-sdk": "^2.509.0",
"axios": "^0.19.0",
"mqtt": "^3.0.0",
"rainu-env-parser": "^1.1.2",
"winston": "^3.2.1"
}
}