-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 2.13 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
{
"name": "dms-sms",
"version": "1.0.0",
"description": "SMS for decentralized loyalty system",
"main": "src/main.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha -r ts-node/register tests/**/**/*.test.ts",
"start": "ts-node src/main.ts",
"docker": "./docker-build.sh",
"lint": "node_modules/.bin/tslint --config tslint.json \"{src,test}/**/*.ts\"",
"lint-fix": "node_modules/.bin/tslint --fix --config tslint.json \"{src,test}/**/*.ts\"",
"prettier": "node_modules/.bin/prettier --write --config .prettierrc 'src/**/*.{json,sol,ts,js,md}' 'tests/**/*.{json,sol,ts,js,md}'",
"test:Endpoint": "mocha -r ts-node/register tests/Endpoints.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bosagora/dms-sms.git"
},
"author": "BOSagora Foundation",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": ""
},
"homepage": "",
"dependencies": {
"aligoapi": "^1.1.3",
"argparse": "^2.0.1",
"assert": "^2.0.0",
"axios": "^1.7.2",
"body-parser": "^1.19.0",
"chai": "^4.3.7",
"chai-http": "^4.3.7",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.14.0",
"extend": "^3.0.2",
"google-libphonenumber": "^3.2.33",
"ip": "^2.0.1",
"mocha": "10.1.0",
"prettier": "^2.5.1",
"prom-client": "^15.1.0",
"ts-node": "^10.5.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.5",
"urijs": "^1.19.7",
"winston": "^3.3.3",
"yaml-env-defaults": "^1.1.3"
},
"devDependencies": {
"@types/argparse": "^2.0.2",
"@types/chai": "^4.3.5",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/extend": "^3.0.1",
"@types/google-libphonenumber": "^7.4.30",
"@types/ip": "^1.1.0",
"@types/mocha": "^10.0.0",
"@types/node": "^12.20.43",
"@types/urijs": "^1.19.12"
}
}