|
|
@@ -2,8 +2,39 @@
|
|
|
"name": "growi-bot-proxy",
|
|
|
"version": "0.9.0-RC",
|
|
|
"scripts": {
|
|
|
-
|
|
|
+ "build": "yarn tsc",
|
|
|
+ "tsc": "tsc --project tsconfig.compile.json",
|
|
|
+ "tsc:w": "tsc --project tsconfig.json -w",
|
|
|
+ "dev": "ts-node-dev src/index.ts",
|
|
|
+ "start:prod": "cross-env NODE_ENV=production node dist/index.js",
|
|
|
+ "test": "yarn test:lint && yarn test:coverage",
|
|
|
+ "test:unit": "cross-env NODE_ENV=test jest",
|
|
|
+ "test:coverage": "yarn test:unit",
|
|
|
+ "test:lint": "eslint src --ext .ts",
|
|
|
+ "test:lint:fix": "eslint src --ext .ts --fix"
|
|
|
},
|
|
|
- "dependencies": {},
|
|
|
- "devDependencies": {}
|
|
|
+ "dependencies": {
|
|
|
+ "compression": "^1.7.4"
|
|
|
+ },
|
|
|
+ "devDependencies": {
|
|
|
+ "@tsed/common": "^6.34.3",
|
|
|
+ "@tsed/core": "^6.34.3",
|
|
|
+ "@tsed/di": "^6.34.3",
|
|
|
+ "@tsed/exceptions": "^6.34.3",
|
|
|
+ "@tsed/json-mapper": "^6.34.3",
|
|
|
+ "@tsed/platform-express": "^6.34.3",
|
|
|
+ "@tsed/schema": "^6.34.3",
|
|
|
+ "@tsed/swagger": "^6.34.3",
|
|
|
+ "@types/compression": "^1.7.0",
|
|
|
+ "@types/express": "^4.17.11",
|
|
|
+ "@types/multer": "^1.4.5",
|
|
|
+ "@types/node": "^14.14.35",
|
|
|
+ "@typescript-eslint/eslint-plugin": "^4.18.0",
|
|
|
+ "@typescript-eslint/parser": "^4.18.0",
|
|
|
+ "eslint-import-resolver-typescript": "^2.4.0",
|
|
|
+ "ts-jest": "^26.5.4",
|
|
|
+ "ts-node": "^9.1.1",
|
|
|
+ "ts-node-dev": "^1.1.6",
|
|
|
+ "typescript": "^4.2.3"
|
|
|
+ }
|
|
|
}
|