-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.25 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.25 KB
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
{
"name": "webhook-test",
"version": "1.0.0",
"main": "server.js",
"type": "module",
"scripts": {
"start": "cross-env NODE_ENV=production node api/server.js",
"start:worker": "cross-env NODE_ENV=production node worker/index.js",
"start:dashboard": "cross-env NODE_ENV=production node dashboard/dashboard.js",
"dev": "cross-env NODE_ENV=development node api/server.js",
"dev:worker": "cross-env NODE_ENV=development node worker/index.js",
"dev:dashboard": "cross-env NODE_ENV=development node dashboard/dashboard.js",
"test": "node --test tests/**/*.test.js",
"test:watch": "node --test --watch tests/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheBigWealth89/webhook-test.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TheBigWealth89/webhook-test/issues"
},
"homepage": "https://github.com/TheBigWealth89/webhook-test#readme",
"description": "",
"dependencies": {
"dotenv": "^17.3.1",
"ejs": "^3.1.10",
"express": "^5.1.0",
"iconv-lite": "^0.7.2",
"ioredis": "^5.10.0",
"supertest": "^7.2.2",
"winston": "^3.17.0",
"yargs": "^18.0.0",
"cross-env": "^7.0.3"
},
"devDependencies": {}
}