-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.63 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
{
"name": "ts-file-server",
"version": "1.0.0",
"description": "A simple file server in express that serves a file-tree structure or a file it self",
"main": "dist/index.js",
"scripts": {
"start": "node build/index.js",
"prestart": "npm run build",
"dev": "nodemon",
"build": "tsc --build",
"prebuild": "npm run clean",
"clean": "tsc --build --clean",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/hussedev/ts-file-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hussedev/ts-file-server/issues"
},
"homepage": "https://github.com/hussedev/ts-file-server#readme",
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.23",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"dotenv": "^8.2.0",
"eslint": "^7.25.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"supertest": "^6.1.3",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"@types/cors": "^2.8.10",
"@types/helmet": "^4.0.0",
"@types/morgan": "^1.9.2",
"cors": "^2.8.5",
"directory-tree": "^2.2.9",
"express": "^4.17.1",
"helmet": "^4.5.0",
"morgan": "^1.10.0"
}
}