This repository has been archived by the owner on Oct 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.84 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": "item-store",
"private": true,
"version": "0.0.8",
"description": "Store and retrieve items from elasticsearch",
"main": "dist/index.js",
"scripts": {
"prettier": "npx prettier --write .",
"lint": "eslint ./src/ --ext .ts",
"clean": "rm -rf ./dist/*",
"build": "npx tsc",
"start": "node ./dist/index.js",
"dev": "concurrently \"npx tsc -w\" \"nodemon dist/index.js\"",
"test": "jest tests/",
"test-inventory": "jest tests/inventory.test.js",
"test-user": "jest tests/add-user.test.js",
"test-item": "jest tests/add-item.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwa-lab/item-store.git"
},
"keywords": [
"JWA",
"LAB",
"Tokenization",
"Service",
"ElasticSearch",
"item",
"store"
],
"author": "JWA Lab",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jwa-lab/item-store/issues"
},
"homepage": "https://github.com/jwa-lab/item-store#readme",
"dependencies": {
"@elastic/elasticsearch": "^7.11.0",
"nats": "^2.0.0-218",
"winston": "^3.3.3",
"yup": "^0.32.9"
},
"devDependencies": {
"@jwalab/minilab": "^0.0.3",
"@tsconfig/node14": "^1.0.0",
"@types/elasticsearch": "^5.0.37",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"axios": "^0.21.1",
"concurrently": "^5.3.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"jest": "^26.6.3",
"jest-environment-node": "^26.6.2",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"typescript": "^4.1.5"
},
"jest": {
"testEnvironment": "node"
}
}