UNPKG

994 BJSONView Raw
1{
2 "name": "@nestjs/serve-static",
3 "version": "1.0.2",
4 "description": "Nest - modern, fast, powerful node.js web framework (@serve-static)",
5 "author": "Kamil Mysliwiec",
6 "license": "MIT",
7 "scripts": {
8 "build": "npm run build:lib",
9 "build:lib": "tsc -p tsconfig.json",
10 "precommit": "lint-staged",
11 "prepublish:npm": "npm run build",
12 "publish:npm": "npm publish --access public",
13 "prepublish:next": "npm run build",
14 "publish:next": "npm publish --access public --tag next"
15 },
16 "peerDependencies": {
17 "@nestjs/common": "^6.0.0",
18 "@nestjs/core": "^6.0.0"
19 },
20 "devDependencies": {
21 "@nestjs/common": "6.10.2",
22 "@nestjs/core": "6.10.2",
23 "@types/node": "12.12.14",
24 "reflect-metadata": "0.1.13",
25 "rxjs": "6.5.3",
26 "express": "4.17.1",
27 "husky": "3.1.0",
28 "lint-staged": "9.5.0",
29 "prettier": "1.19.1",
30 "typescript": "3.7.2"
31 },
32 "lint-staged": {
33 "*.ts": [
34 "prettier --write",
35 "git add"
36 ]
37 }
38}