forked from StretchShop/StretchShop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.9 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
75
76
77
78
{
"name": "stretchshop",
"version": "0.6.13",
"description": "Fast & scalable e-commerce",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/StretchShop/StretchShop.git"
},
"scripts": {
"dev": "moleculer-runner --repl --hot services",
"start": "moleculer-runner",
"deps": "npm-check -u",
"ci": "jest --watch",
"test": "jest --coverage",
"lint": "eslint services",
"docker:build": "docker build -t stretchshop .",
"demo": "node demo/demo.js",
"postinstall": "node demo/demo.js base"
},
"keywords": [
"stretchshop",
"microservices",
"moleculer",
"e-commerce"
],
"author": "Marcel Zúbrik - cw.sk",
"devDependencies": {
"eslint": "^8.31.0",
"jest": "^29.3.1",
"jest-cli": "^29.3.1"
},
"dependencies": {
"@stretchshop/moleculer-cron": "^0.0.3",
"base-64": "^1.0.0",
"bcryptjs": "^2.4.3",
"connect-history-api-fallback": "^2.0.0",
"cookie": "^0.5.0",
"cookies": "^0.8.0",
"cross-fetch": "^3.1.5",
"dotenv": "^16.0.3",
"formidable": "^2.1.1",
"fs-extra": "^11.1.0",
"generate-password": "^1.7.0",
"handlebars": "^4.7.7",
"html-to-pdfmake": "^2.4.11",
"ioredis": "^5.2.4",
"jsdom": "^21.0.0",
"jsonwebtoken": "9.0.0",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"moleculer": "^0.14.28",
"moleculer-db": "^0.8.21",
"moleculer-db-adapter-mongo": "^0.4.16",
"moleculer-repl": "^0.7.3",
"moleculer-web": "^0.10.5",
"nats": "^2.10.2",
"ncp": "^2.0.0",
"node-fetch": ">=3.3.0",
"nodemailer": "^6.8.0",
"paypal-rest-sdk": "^1.8.1",
"pdfmake": "^0.2.7",
"promise-each": "^2.2.0",
"saslprep": "^1.0.3",
"slug": "^8.2.2",
"stripe": "^11.6.0"
},
"engines": {
"node": ">= 12.x.x"
},
"jest": {
"testEnvironment": "node",
"rootDir": "./services",
"roots": [
"../test"
]
}
}