-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.42 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
74
{
"name": "kukinterviewer_dev",
"version": "1.0.0",
"description": "server app for kukinterviewer",
"main": "index.js",
"scripts": {
"test": "env TZ='GMT' jest --detectOpenHandles --runInBand",
"jest": "env TZ='GMT' jest --detectOpenHandles --runInBand",
"build": "env TZ='GMT' tsc && bash build-frontend.sh --prod --install && npm run test",
"tsc": "tsc",
"tsc--help": "tsc --help",
"tsc-v": "tsc -v",
"start.ts": "env TZ='GMT' ts-node src/index.ts",
"start.js": "env TZ='GMT' node dist/index.js",
"watch.ts": "tsc -w",
"watch.js": "env TZ='GMT' nodemon --watch dist --exec node dist/index.js",
"ts-node": "env TZ='GMT' ts-node",
"ts": "env TZ='GMT' ts-node",
"lint": "eslint . --ext .ts",
"watch_frontend.ts": "nodemon --watch src/web/frontend/src --ext '*' --exec bash build-frontend.sh",
"build_all": "env TZ='GMT' tsc && bash build-frontend.sh",
"start": "env TZ='GMT' nodemon -x 'node dist/index.js || echo restarting the app && touch dist/index.js'"
},
"engines": {
"node": "12.x"
},
"author": "Kukuster <KukusterMOP@gmail.com>",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"countries-and-timezones": "^2.3.1",
"date.js": "^0.3.3",
"express": "^4.17.1",
"luxon": "^1.25.0",
"mongoose": "^5.8.0",
"node-emoji": "^1.10.0",
"node-schedule": "^1.3.2",
"node-telegram-bot-api": "^0.40.0",
"now": "^21.0.1",
"parse-duration": "^0.4.4",
"pretty-ms": "^7.0.1",
"nodemon": "^2.0.6"
},
"devDependencies": {
"@types/bluebird": "^3.5.32",
"@types/countries-and-timezones": "^2.0.3",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.8",
"@types/human-interval": "^1.0.0",
"@types/jest": "^26.0.3",
"@types/luxon": "^1.25.0",
"@types/mockdate": "^2.0.0",
"@types/mongoose": "^5.7.29",
"@types/node": "^14.0.14",
"@types/node-emoji": "^1.8.1",
"@types/node-schedule": "^1.3.1",
"@types/node-telegram-bot-api": "^0.40.3",
"@types/parse-duration": "^0.3.0",
"@types/pretty-ms": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"jest": "^26.6.0",
"mockdate": "^3.0.2",
"ts-essentials": "^7.0.1",
"ts-jest": "^26.1.1",
"ts-node": "^8.5.4",
"ts-node-dev": "^1.0.0-pre.51",
"typescript": "^4.1.2"
},
"jest": {
"globalSetup": "./global-setup.js"
}
}