-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "sms-activate-org",
"version": "1.2.1",
"description": "A full NodeJS API for sms-activate.org",
"main": "dist/index.js",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3"
},
"dependencies": {
"axios": "^0.27.2",
"dotenv": "^16.0.3",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.7.0",
"typescript": "^4.8.2",
"typescript-mix": "^3.1.3"
},
"scripts": {
"start": "tsc && node dist/index.js",
"dev": "tsc-watch --onSuccess \"ts-node src/index.ts\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LCozzoli/SMS-Activate.org-Typescript.git"
},
"keywords": [
"smsactivate",
"sms-activate.org",
"smsactivateorg"
],
"author": "SegFault",
"license": "ISC",
"bugs": {
"url": "https://github.com/LCozzoli/SMS-Activate.org-Typescript/issues"
},
"homepage": "https://github.com/LCozzoli/SMS-Activate.org-Typescript#readme"
}