-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.97 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
{
"name": "amocrm-connector",
"description": "AmoCRM api connector for Node.js",
"version": "0.4.11",
"repository": "[email protected]:lybrus/amocrm-connector.git",
"homepage": "[email protected]:lybrus/amocrm-connector.git",
"author": "Damir Rashidov <[email protected]>",
"license": "MIT",
"keywords": [
"amo",
"amocrm",
"api",
"crm"
],
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.js",
"dependencies": {
"axios": "^0.26.0",
"class-validator": "^0.13.2",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^27.4.0",
"@types/localtunnel": "^2.0.1",
"@types/module-alias": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"body-parser": "^1.20.1",
"cypress": "^12.6.0",
"dotenv-cli": "^4.1.1",
"eslint": "^8.34.0",
"express": "^4.18.2",
"jest": "^27.4.4",
"localtunnel": "^2.0.2",
"module-alias": "^2.2.2",
"resolve-tspaths": "^0.8.8",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"scripts": {
"jest": "dotenv -e .env.test jest",
"clean": "rm -rf dist",
"prebuild": "yarn clean",
"build": "tsc -p build.tsconfig.json",
"postbuild": "resolve-tspaths",
"cypress:open": "dotenv -e .env.test cypress open",
"cypress": "dotenv -e .env.test cypress run",
"serve:auto": "ts-node -- testing/server.ts",
"serve": "dotenv -e .env.test yarn serve:auto",
"tunnel:auto": "yarn run lt -p $SERVER_PORT -s $TUNNEL_SUBDOMAIN -h https://$TUNNEL_HOST",
"tunnel": "dotenv -e .env.test yarn tunnel:auto",
"test": "yarn cypress",
"example-chat": "dotenv -e .env.test ts-node examples/chat.ts",
"lint": "eslint \"src/**/*.ts\" --fix"
}
}