-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "eshop-api",
"version": "1.0.0",
"description": "Unified api to Slovak eshops.",
"main": "src/index.js",
"repository": "[email protected]:vacuumlabs/eshop-api.git",
"author": "Samuel Hapák <[email protected]>",
"license": "Unlicense",
"scripts": {
"dev": "babel-node -- src/index.js",
"test": "babel-node -- ./test.js",
"knex": "knex --knexfile knex/knexfile.js",
"eslint": "eslint src",
"build": "yarn knex migrate:latest && babel src -d dist",
"start": "node -- dist/index.js",
"ngrok": "ngrok http 8000"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"@slack/bolt": "^3.13.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"cheerio": "^1.0.0-rc.3",
"express": "^4.18.2",
"googleapis": "^118.0.0",
"knex": "^2.4.2",
"moment": "^2.29.1",
"moment-timezone": "^0.5.43",
"monent": "^0.0.2-security",
"pg": "^8.11.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"transenv": "^1.0.3",
"winston": "^3.8.2"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.17.5",
"@babel/node": "^7.20.7",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-vacuumlabs": "^8.0.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"ngrok": "^4.3.0",
"prettier": "^2.8.8"
},
"resolutions": {
"deep-extend": "0.5.1",
"request": "2.88.0"
}
}