-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.95 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
{
"name": "teneo-khoros-bot-connector",
"version": "1.0.0",
"description": "Connects Teneo as a Bot with Khoros",
"displayName": "Teneo Khoros Bot Connector",
"author": "Peter Joles <[email protected]> (https://www.linkedin.com/in/peterjoles/)",
"main": "./dist-server/bin/www.js",
"engines": {
"node": "12.13.x",
"npm": "6.x"
},
"scripts": {
"start": "npm run prod",
"build": "npm-run-all clean transpile",
"server": "node ./dist-server/bin/www",
"dev": "cross-env NODE_ENV=development nodemon --exec babel-node ./server/bin/www.js",
"dev:transpile": "cross-env NODE_ENV=development npm-run-all build server",
"dev:watch": "nodemon",
"prod": "cross-env NODE_ENV=production npm-run-all build server",
"transpile": "babel ./server --out-dir dist-server",
"clean": "rimraf dist-server",
"test": "jest"
},
"license": "MIT",
"dependencies": {
"@artificialsolutions/tie-api-client": "^1.3.4",
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"app-root-path": "^3.0.0",
"async-ratelimiter": "^1.2.7",
"body-parser": "^1.19.0",
"bottleneck": "^2.19.5",
"core-js": "^3.6.4",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"ioredis": "^4.16.0",
"moment": "^2.24.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"regenerator-runtime": "^0.13.5",
"rimraf": "^3.0.2",
"superagent": "^5.2.2",
"twit": "^2.2.11",
"winston": "^3.2.1",
"winston-console-format": "^1.0.5"
},
"devDependencies": {
"@babel/node": "^7.8.7",
"jest": "^25.1.0"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"nodemonConfig": {
"exec": "npm run dev:transpile",
"watch": [
"server/*"
],
"ignore": [
"**/__tests__/**",
"*.test.js",
"*.spec.js"
]
},
"jest": {
"testEnvironment": "node"
}
}