generated from mergemocha/typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.47 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "remotr-daemon",
"version": "1.0.0",
"description": "Daemon software for Remotr",
"main": "lib/index.js",
"bin": "lib/index.js",
"pkg": {
"scripts": "lib/**/*.js",
"assets": [
"node_modules/node-windows/bin/**/*"
],
"targets": [
"latest-win-x64"
],
"outputPath": "dist"
},
"scripts": {
"start": "node lib/index.js",
"dev": "cross-env NODE_ENV=development nodemon lib/index.js",
"build": "npm run tsc && npm run pkg",
"tsc": "tsc",
"watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --config jest.coverage.js",
"test:coverage:watch": "jest --watchAll --config jest.coverage.js",
"lint": "eslint . --ext .ts",
"doc": "typedoc --out docs src",
"pkg": "pkg . --compress GZip && npm run combine-build",
"combine-build": "node scripts/combine-build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mergemocha/remotr-daemon.git"
},
"author": "Linus Willner, Anna Smati, Panu Eronen",
"license": "MIT",
"bugs": {
"url": "https://github.com/mergemocha/remotr-daemon/issues"
},
"homepage": "https://github.com/mergemocha/remotr-daemon#readme",
"devDependencies": {
"@types/express": "^4.17.11",
"@types/express-rate-limit": "^5.1.1",
"@types/fs-extra": "^9.0.11",
"@types/jest": "^26.0.22",
"@types/node": "^15.0.1",
"@types/node-windows": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"cross-env": "^7.0.3",
"eslint": "^7.25.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"jest": "^26.6.3",
"pkg": "^5.1.0",
"ts-jest": "^26.5.5",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
},
"dependencies": {
"axios": "^0.21.1",
"conf": "^10.0.1",
"execa": "^5.0.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"express-validator": "^6.10.1",
"fs-extra": "^9.1.0",
"helmet": "^4.6.0",
"internal-ip": "^6.2.0",
"is-admin": "^3.0.0",
"joiful": "^3.0.2",
"macaddress": "^0.5.2",
"node-windows": "^1.0.0-beta.5",
"nodemon": "^2.0.7",
"reflect-metadata": "^0.1.13",
"winston": "^3.3.3",
"winston-transport": "^4.4.0",
"yargs": "^17.0.0"
}
}