-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "upfile-server",
"version": "1.0.0",
"description": "Serve upfile stored files.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p tsconfig.json",
"precommit": "lint-staged",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"format": "prettier --write \"src/**/*.ts\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.8",
"async": "^3.2.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"lodash": "^4.17.20",
"method-override": "^3.0.0",
"prettier": "^2.6.2",
"request": "^2.88.2",
"stream-buffers": "^3.0.2",
"tracer": "^1.1.3",
"uuid": "^8.3.1"
},
"devDependencies": {
"@types/cors": "^2.8.8",
"@types/method-override": "0.0.31",
"@types/node": "^14.11.8",
"@types/request": "^2.48.5",
"@types/stream-buffers": "^3.0.3",
"lint-staged": "^10.4.0",
"source-map-support": "^0.5.19",
"tslint": "^6.1.3",
"typescript": "^4.0.3"
}
}