-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.47 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@duetds/server",
"version": "1.0.0",
"description": "This package is a private test server used by multiple packages, it can be used as a standalone to server anything in packages",
"bugs": {
"email": "[email protected]"
},
"license": "UNLICENSED",
"author": "LocalTapiola Services Ltd <[email protected]>",
"scripts": {
"stop": "pm2 kill",
"start": "pm2 start ./src/server.js --no-daemon",
"start:nude": "node ./src/server.js",
"list": "pm2 list",
"restart": "pm2 restart ./src/server.js",
"test": "npm run test:changed",
"start:dev": "npm run server:up",
"start:prod": "NODE_ENV=production npm run server:up",
"start:prod:watch": "npm run start:prod -- -- --watch",
"start:dev:watch": "npm run start:dev -- -- --watch",
"server:up": "node server.js",
"server:up:watch": "node ./src/server.js --watch",
"koa:serve": "node server.js",
"koa:serve:ci": "CI=true node ./src/server.js",
"koa:serve:watch": "nodemon ./src/server.js"
},
"private": false,
"dependencies": {
"@koa/cors": "3.2.0",
"@shopify/koa-liveness-ping": "^1.1.5",
"chalk": "4.1.2",
"config": "^3.3.7",
"dashargs": "^4.1.5",
"koa": "2.13.4",
"koa-body": "4.2.0",
"koa-colorful-logger": "0.0.3",
"koa-mount": "4.0.0",
"koa-router": "10.1.1",
"koa-static": "5.0.0",
"nodemon": "^2.0.15",
"pm2": "5.2.0"
},
"publishConfig": {
"access": "public"
}
}