forked from Cezerin2/Server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.19 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.19 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "cezerin2",
"version": "0.35.0",
"description": "Cezerin2 is React and Node.js based eCommerce platform. https://cezerin.org",
"keywords": [
"cezerin2",
"cezerin",
"ecommerce",
"shopping cart",
"shop",
"cms",
"typescript"
],
"homepage": "https://cezerin.org",
"bugs": "https://github.com/Cezerin2/cezerin2/issues",
"license": "Unlicense",
"author": "Restmount, Himadu and Community",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/Cezerin2/cezerin2"
},
"scripts": {
"compile": "tsc",
"test": "jest",
"dev": "concurrently \"tsc -w \" \"nodemon -r esm build/index.js\"",
"setup": "node -r esm build/setup.js",
"theme:install": "./scripts/theme-install.sh",
"theme:export": "./scripts/theme-export.sh",
"lint": "eslint --fix . && prettier --write . && jest && tsc",
"prettier": "prettier --write \"src/**/*.js\" \"theme/**/*.js\"",
"precommit": "lint-staged",
"start": "node -r esm build/index.js"
},
"lint-staged": {
"*.js": [
"prettier --write .",
"git add ."
],
"*": [
"prettier --write .",
"git add ."
]
},
"dependencies": {
"apollo-server-express": "^2.14.2",
"aws-sdk": "^2.701.0",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"cezerin2-client": "^0.38.0",
"chart.js": "^2.9.3",
"cookie-parser": "^1.4.5",
"cryptr": "^6.0.2",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-jwt": "^5.3.3",
"formidable": "^1.2.2",
"fs-extra": "^9.0.0",
"handlebars": "^4.7.6",
"helmet": "^3.22.0",
"husky": "^4.2.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"lru-cache": "^5.1.1",
"lscache": "^1.3.0",
"minio": "^7.0.16",
"moment": "^2.24.0",
"mongodb": "^3.5.5",
"node-fetch": "^2.6.0",
"nodemailer": "^6.4.6",
"nodemailer-smtp-transport": "^2.7.4",
"query-string": "^6.12.0",
"response-time": "^2.3.2",
"sitemap": "^6.1.5",
"slug": "^3.3.0",
"stripe": "^8.64.0",
"ua-parser-js": "^0.7.21",
"winston": "^3.3.3",
"ws": "^7.2.3"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.6",
"@types/express-jwt": "^0.0.42",
"@types/formidable": "^1.0.31",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/lru-cache": "^5.1.0",
"@types/mongodb": "^3.5.18",
"@types/node-fetch": "^2.5.7",
"@types/nodemailer": "^6.4.0",
"@types/slug": "^0.9.1",
"@types/ws": "^7.2.4",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"concurrently": "^5.1.0",
"eslint": "^7.1.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.20.3",
"html-webpack-plugin": "^4.0.4",
"jest": "^26.0.1",
"lint-staged": "^10.2.4",
"nodemon": "^2.0.4",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.4",
"typescript": "^3.9.5"
},
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.0.0"
}
}