2023-11-02 12:12:37 +00:00
|
|
|
{
|
|
|
|
"name": "survey-template",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "survey server template",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2024-01-04 07:13:37 +00:00
|
|
|
"copy": "mkdir -p ./build/ && cp -rf ./src/* ./build/",
|
2023-11-02 12:12:37 +00:00
|
|
|
"build": "tsc",
|
2023-12-27 11:29:20 +00:00
|
|
|
"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",
|
2023-11-13 20:21:18 +00:00
|
|
|
"start": "npm run start:online",
|
2023-12-04 03:34:35 +00:00
|
|
|
"local": "npx ts-node scripts/run-local.ts",
|
2023-12-15 04:10:16 +00:00
|
|
|
"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",
|
2023-12-27 11:29:20 +00:00
|
|
|
"@types/koa-static": "^4.0.4",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^6.15.0",
|
|
|
|
"@typescript-eslint/parser": "^6.15.0",
|
2023-12-15 04:10:16 +00:00
|
|
|
"cross-env": "^7.0.3",
|
2023-12-27 11:29:20 +00:00
|
|
|
"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",
|
2023-12-15 04:10:16 +00:00
|
|
|
"ts-node": "^10.9.2",
|
|
|
|
"ts-node-dev": "^2.0.0",
|
2023-11-02 12:12:37 +00:00
|
|
|
"typescript": "^4.8.4"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-01-04 07:13:37 +00:00
|
|
|
"cheerio": "^1.0.0-rc.12",
|
2023-11-29 07:23:28 +00:00
|
|
|
"crypto-js": "^4.2.0",
|
2023-12-27 11:29:20 +00:00
|
|
|
"glob": "^10.3.10",
|
2023-11-13 20:21:18 +00:00
|
|
|
"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",
|
2023-11-13 20:21:18 +00:00
|
|
|
"koa-router": "^12.0.0",
|
2023-12-27 11:29:20 +00:00
|
|
|
"koa-static": "^4.0.3",
|
2023-11-13 20:21:18 +00:00
|
|
|
"lodash": "^4.17.21",
|
|
|
|
"moment": "^2.29.4",
|
2023-12-26 06:52:25 +00:00
|
|
|
"mongodb": "^5.7.0",
|
|
|
|
"svg-captcha": "^1.4.0"
|
2023-11-02 12:12:37 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
2023-11-13 20:21:18 +00:00
|
|
|
"node": ">=14.21.0",
|
|
|
|
"npm": ">=6.14.17"
|
2023-11-02 12:12:37 +00:00
|
|
|
}
|
|
|
|
}
|