xiaoju-survey/server/package.json

44 lines
1.3 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": {
2023-11-16 13:42:27 +00:00
"copy": "mkdir -p ./build/ && cp -rf ./src/* ./build/",
2023-11-02 12:12:37 +00:00
"build": "tsc",
"launch:local": "npm run build && SERVER_ENV=local node ./build/index.js",
"launch:dev": "npm run build && SERVER_ENV=dev node ./build/index.js",
2023-12-01 08:13:51 +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",
"start": "npm run start:online",
"local": "npx ts-node scripts/run-local.ts",
"dev": "npm run copy && nodemon -e js,mjs,json,ts --exec 'npm run launch:dev' --watch ./src"
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-04 03:02:39 +00:00
"mongodb-memory-server": "^9.0.1",
2023-11-02 12:12:37 +00:00
"nodemon": "^2.0.20",
"typescript": "^4.8.4"
},
"dependencies": {
2023-11-29 07:23:28 +00:00
"crypto-js": "^4.2.0",
"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",
"lodash": "^4.17.21",
"moment": "^2.29.4",
2023-12-04 03:02:39 +00:00
"mongodb": "^5.7.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
}
}