xiaoju-survey/server/package.json

53 lines
1.5 KiB
JSON
Raw Normal View History

2023-11-02 12:12:37 +00:00
{
"name": "survey-template",
"version": "1.0.0",
"description": "survey server template",
"main": "index.js",
"scripts": {
"copy": "mkdir -p ./build/ && cp -rf ./src/* ./build/",
2023-11-02 12:12:37 +00:00
"build": "tsc",
"start:stable": "SERVER_ENV=stable node ./build/index.js",
"start:preonline": "SERVER_ENV=preonline node ./build/index.js",
"start:online": "SERVER_ENV=online node ./build/index.js",
"start": "npm run start:online",
"local": "npx ts-node scripts/run-local.ts",
"dev": "npx ts-node-dev ./src/index.ts"
2023-11-02 12:12:37 +00:00
},
"devDependencies": {
2023-11-29 07:23:28 +00:00
"@types/crypto-js": "^4.2.1",
"@types/koa": "^2.13.8",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-router": "^7.4.4",
"@types/koa-static": "^4.0.4",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
2023-12-04 03:02:39 +00:00
"mongodb-memory-server": "^9.0.1",
2023-11-02 12:12:37 +00:00
"nodemon": "^2.0.20",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
2023-11-02 12:12:37 +00:00
"typescript": "^4.8.4"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
2023-11-29 07:23:28 +00:00
"crypto-js": "^4.2.0",
"glob": "^10.3.10",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.1",
2023-11-02 12:12:37 +00:00
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.1",
"koa-pino-logger": "^4.0.0",
"koa-router": "^12.0.0",
"koa-static": "^4.0.3",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"mongodb": "^5.7.0",
"svg-captcha": "^1.4.0"
2023-11-02 12:12:37 +00:00
},
"engines": {
"node": ">=14.21.0",
"npm": ">=6.14.17"
2023-11-02 12:12:37 +00:00
}
}