-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 2.03 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
{
"name": "healthcheck-bot",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"scripts": {
"watch-front": "npm run build-ts && node dist/front.js",
"build-front": "parcel build src/front/index.html -d dist/webapp",
"test": "jest --forceExit --coverage --verbose",
"watch-test": "jest --forceExit --watchAll --verbose",
"lint": "eslint \"**/*.{js,ts}\" --quiet --fix",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"build": "npm run build-ts && npm run build-front",
"watch-node": "nodemon dist/main.js",
"start": "node dist/main.js",
"dev": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold\" \"npm run watch-ts\" \"npm run watch-node\" "
},
"author": "Eddy Lazar",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.16",
"@types/parcel-bundler": "^1.12.0",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"concurrently": "^4.1.1",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-standard": "^4.0.0",
"husky": "^3.0.2",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"parcel-bundler": "^1.12.3",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"dependencies": {
"@hapi/joi": "^15.1.0",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.0",
"@types/hapi__joi": "^15.0.3",
"@types/node-telegram-bot-api": "^0.31.0",
"@types/react-dom": "^16.8.5",
"@types/supertest": "^2.0.8",
"antd": "^3.21.4",
"axios": "^0.19.0",
"dotenv": "^8.0.0",
"eslint-config-standard": "^13.0.1",
"express": "^4.17.1",
"http-status": "^1.3.2",
"node-fetch": "^2.6.0",
"node-telegram-bot-api": "^0.30.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"src": "^1.1.2"
}
}