-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1 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
{
"name": "scheduler",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"engines": {
"node": ">=10"
},
"scripts": {
"dev": "nodemon",
"start": "node dist/src/index.js",
"build": "tsc -p ."
},
"dependencies": {
"axios": "^0.19.2",
"bull": "^3.14.0",
"bull-board": "^0.9.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"pug": "^3.0.0",
"uuid": "^8.1.0",
"node-utils": "git://github.com/adpushup/NodeUtils.git"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bull": "^3.13.0",
"@types/express": "^4.17.6",
"@types/express-session": "^1.17.0",
"@types/uuid": "^8.0.0",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "NODE_ENV=development node -r ts-node/register ./src/index.ts",
"ext": "ts, js"
}
}