-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.19 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
{
"name": "@muevolution/server",
"version": "1.0.0",
"description": "Multi User Evolution Server",
"author": "Kauko <kauko@biosynth.link>",
"license": "MIT",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"main": "build/app.js",
"scripts": {
"start": "node build/app.js",
"debug": "node --inspect build/app.js",
"build": "npm-run-all build:ts",
"build:ts": "tsc -b .",
"build:watch": "tsc -b . --watch",
"build:clean": "rm -rf build",
"build:lint": "tslint -p .",
"build:run": "concurrently \"npm run build:watch\" \"nodemon\"",
"test": "NODE_ENV=test nyc mocha",
"test:upload": "npm-run-all test",
"activity-monitor": "node build/tools/activity-monitor.js",
"redeploy-scripts": "node build/tools/init-reload-scripts.js"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"express": "^4.17.1",
"express-async-await": "^1.1.0",
"glob": "^7.1.6",
"ioredis": "^4.24.2",
"lodash": "^4.17.21",
"nconf": "^0.11.2",
"shortid": "^2.2.16",
"socket.io": "^4.0.0",
"source-map-support": "^0.5.19",
"string-format": "^2.0.0",
"vm2": "^3.9.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/bluebird": "^3.5.33",
"@types/chai": "^4.2.15",
"@types/chai-as-promised": "^7.1.3",
"@types/chai-subset": "^1.3.3",
"@types/express": "^4.17.11",
"@types/glob": "^7.1.3",
"@types/ioredis": "^4.22.0",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.2",
"@types/nconf": "^0.10.0",
"@types/shortid": "0.0.29",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"concurrently": "^6.0.0",
"mocha": "^8.3.2",
"mocha-typescript": "^1.1.17",
"mochawesome": "^6.2.2",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^4.2.3"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
}
}