-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
108 lines (108 loc) · 4.26 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "egg-party",
"version": "1.0.0",
"scripts": {
"start": "npm run serve",
"test": "npm run test:single-run",
"\n -- Serve --": "",
"serve": "npm run clean && concurrently npm:build:watch npm:serve:run-on-build -k -c \"cyan.dim,green.dim\" -n \" build , api \"",
"serve-test": "npm run clean && concurrently npm:build:watch npm:serve:run-on-build npm:test:run-on-build -k -c \"cyan.dim,green.dim,blue.dim\" -n \" build , api , mocha \"",
"\n -- Test --": "",
"test:single-run": "npm run build && npm run test:run",
"test:watch": "npm run clean && concurrently npm:build:watch npm:test:run-on-build -k -c \"green.dim,cyan.dim\" -n \" build , mocha \"",
"test:junit": "npm run build && mocha --opts test/mocha.junit.opts",
"\n -- Database --": "",
"migration:generate": "npm run build && typeorm migration:generate -d ./src/db/migrations",
"migration:run": "npm run build && typeorm migration:run",
"\n -- Utilities --": "",
"tunnel": "ngrok http 7000 --host-header=\"localhost:7000\"",
"kill": "fkill :9230 -f || exit 0 && fkill :7000 -f || exit 0",
"\n -- Build --": "",
"build": "npm run clean && tsc --build",
"build:watch": "tsc --build --watch",
"build:prod": "tsc --build ./src/tsconfig.prod.json",
"clean": "rimraf dist",
"\n -- Style --": "",
"style:fix": "npm run style:fix:src & npm run style:fix:test",
"style:check": "npm run style:check:src & npm run style:check:test",
"\n -- Scripts Used by Other Scripts (don't invoke directly) --": "",
"wait-for-build": "wait-on ./dist/src/main.js",
"serve:run": "npm run --silent kill && node --inspect=\"127.0.0.1:9230\" ./dist/src/main.js",
"serve:run-on-build": "npm run wait-for-build && chokidar \"dist\" -c \"npm run serve:run\" --initial --silent",
"test:run": "npm run --silent kill && mocha --inspect=\"9231\"",
"pretest:run-on-build": "wait-on ./dist/src/main.js",
"test:run-on-build": "chokidar \"dist\" -c \"npm run test:run\" --initial --silent",
"style:fix:src": "cd src && gts fix",
"style:fix:test": "cd test && gts fix",
"style:check:src": "cd src && gts check",
"style:check:test": "cd test && gts check"
},
"description": "Egg Party",
"main": "dist/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/cakekindel/egg-party.git"
},
"keywords": [
"egg",
"party",
"slack",
"app",
"plugin"
],
"author": "Orion Kindel",
"license": "ISC",
"dependencies": {
"@nestjs/common": "^6.8.4",
"@nestjs/core": "^6.8.4",
"@nestjs/microservices": "^6.8.4",
"@nestjs/platform-express": "^6.8.4",
"@nestjs/websockets": "^6.8.4",
"@wufe/mapper": "^0.5.0",
"axios": "^0.19.0",
"class-transformer": "^0.2.3",
"dotenv": "^8.2.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"mssql": "^6.0.1",
"purify-ts": "^0.14.1",
"qs": "^6.9.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.4",
"typeorm": "^0.2.20"
},
"devDependencies": {
"@fluffy-spoon/substitute": "^1.89.0",
"@nestjs/testing": "^6.8.4",
"@testdeck/mocha": "0.0.6",
"@types/chai": "^4.2.6",
"@types/chai-as-promised": "^7.1.2",
"@types/express": "4.17.2",
"@types/lodash": "^4.14.149",
"@types/mocha": "^7.0.0",
"@types/node": "^13.1.0",
"@types/qs": "^6.5.3",
"@types/ramda": "^0.26.39",
"@types/sinon": "^7.5.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chokidar-cli": "^2.1.0",
"concurrently": "^5.0.0",
"fkill-cli": "^5.2.0",
"gts": "^1.1.2",
"mocha": "^7.0.1",
"mocha-junit-reporter": "^1.23.1",
"prettier": "^1.19.1",
"ramda": "^0.26.1",
"sinon": "^8.0.0",
"source-map-support": "*",
"tslint": "5.20.1",
"typescript": "~3.7.0"
},
"optionalDependencies": {
"ngrok": "^3.2.5",
"pm2": "^4.2.3",
"rimraf": "^3.0.0",
"wait-on": "^3.3.0"
}
}