-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.57 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
{
"name": "georgia-utilities-alert",
"version": "1.0.2",
"description": "",
"main": "index.js",
"scripts": {
"build-and-start": "npm run build && npm run start",
"build": "npx tsc",
"postinstall": "npx tsc",
"start": "node dist/index.js",
"start:dev:bot": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"dev:map:start": "node dist/map/index.js",
"dev:map:build-and-start": "npm run build && npm run dev:map:start",
"test": "jest",
"dev:stats:start": "node dist/batumiElectricity/stats.js",
"dev:stats:build-and-start": "npm run build && npm run dev:stats:start",
"dev:matcher:start": "node dist/map/matcher.js",
"dev:matcher:build-and-start": "npm run build && npm run dev:matcher:start"
},
"keywords": [],
"author": "hermesiss",
"license": "ISC",
"dependencies": {
"axios": "^1.2.0",
"bing-translate-api": "^2.7.0",
"canvas": "^2.11.2",
"dayjs": "^1.11.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"google-polyline": "^1.0.3",
"imgbox-js": "^1.0.35",
"mongoose": "^6.7.5",
"puregram": "^2.12.2",
"static-google-map": "^0.0.5",
"string-similarity": "^4.0.4",
"tinygradient": "^1.1.5"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/google-polyline": "^1.0.0",
"@types/jest": "^29.5.1",
"@types/node": "^18.11.9",
"@types/string-similarity": "^4.0.0",
"concurrently": "^7.6.0",
"jest": "^29.5.0",
"nodemon": "^2.0.20",
"ts-jest": "^29.1.0",
"typescript": "^4.9.3"
},
"engines": {
"node": "18.x"
}
}