-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.5 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
{
"name": "remote-file-access-api",
"version": "1.1.2",
"description": "Allows remote access to local files, directories and JSON databases through a simple configuration file. Minimal set-up, maximum configuration and extendibility",
"main": "dist/src/index.js",
"scripts": {
"clean:dist": "rimraf ./dist",
"clean:modules": "rimraf ./node_modules",
"clean": "npm run clean:dist && npm run clean:modules",
"lint": "npx eslint src/**/*.ts",
"lint:fix": "npx eslint --fix src/**/*.ts && npx eslint --fix test/**/*.ts",
"prebuild": "npm run clean:dist",
"build": "tsc",
"start": "node dist/src/index",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"pretest": "npm run build",
"test": "mocha dist/test/**/*.js",
"test:dev": "ts-mocha test/**/*.spec.ts -w --watch-files '**/*.ts'",
"commit": "cz",
"pm2:start": "npm run build && pm2 start --name=remote-file-access-api npm -- run start",
"pm2:stop": "pm2 stop remote-file-access-api",
"pm2:purge": "pm2 stop remote-file-access-api && pm2 reset remote-file-access-api && pm2 delete remote-file-access-api",
"pm2:logs": "pm2 logs --lines 300 remote-file-access-api",
"pm2:logs:error": "pm2 logs --err --lines 300 remote-file-access-api"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.4",
"@semantic-release/npm": "^10.0.4",
"@semantic-release/release-notes-generator": "^11.0.4",
"@types/archiver": "^5.3.2",
"@types/body-parser": "^1.19.2",
"@types/chai": "^4.3.4",
"@types/common-tags": "^1.8.1",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.188",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"chai": "^4.3.7",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.27.0",
"mocha": "^10.1.0",
"rimraf": "^3.0.2",
"semantic-release": "^21.0.7",
"sinon": "^14.0.2",
"ts-mocha": "^10.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
},
"dependencies": {
"archiver": "^6.0.0",
"body-parser": "^1.20.2",
"cls-rtracer": "^2.6.3",
"common-tags": "^1.8.2",
"compression": "^1.7.4",
"express": "^4.18.2",
"rate-limiter-flexible": "^2.4.2"
}
}