-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.4 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
79
80
81
82
83
84
85
86
87
{
"name": "@sikka/hajar",
"version": "1.1.79",
"description": "Toolkit to create SaaS applications",
"author": "Sikka Software <[email protected]> (http://sikka.io)",
"license": "MIT",
"keywords": [
"engine",
"kit",
"saas",
"hajar"
],
"repository": {
"type": "git",
"url": "https://git b.com/sikka-software/hajar.git"
},
"bugs": {
"url": "https://github.com/sikka-software/hajar/issues",
"email": "[email protected]"
},
"types": "dist/index.d.ts",
"homepage": "https://sikka.io/hajar",
"main": "dist/Hajar.cjs.min.js",
"module": "dist/Hajar.esm.min.js",
"unpkg": "dist/Hajar.umd.min.js",
"files": [
"package/core",
"dist/"
],
"scripts": {
"build": "rollup -c --environment BUILD:production",
"dev": "rollup -c -w",
"lint": "eslint --ext .js,.ts package/core",
"test": "jest --config jest.config.js",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage",
"clean": "rimraf dist coverage",
"prepare": "npm-run-all clean lint test build",
"compile": "tsc"
},
"devDependencies": {
"@babel/core": "~7.23.2",
"@babel/eslint-parser": "~7.24.1",
"@babel/plugin-proposal-object-rest-spread": "~7.20.7",
"@babel/preset-env": "~7.23.2",
"@babel/register": "~7.22.15",
"@rollup/plugin-babel": "~6.0.4",
"@rollup/plugin-commonjs": "~25.0.7",
"@rollup/plugin-node-resolve": "~15.2.3",
"@rollup/plugin-replace": "~5.0.5",
"@types/bcrypt": "~5.0.2",
"@types/jsonwebtoken": "~9.0.6",
"@wwa/rollup-plugin-terser": "~1.1.2",
"cross-env": "~7.0.3",
"eslint": "~8.57.0",
"jest": "~29.7.0",
"npm-run-all": "~4.1.5",
"rimraf": "~5.0.5",
"rollup": "~4.3.0",
"rollup-plugin-alias": "~2.2.0",
"ts-node": "~10.9.1"
},
"dependencies": {
"@firebase/app": "~0.9.22",
"@firebase/auth": "~1.3.2",
"@rollup/plugin-json": "~6.0.1",
"aws-sdk": "~2.1490.0",
"base64-stream": "~1.0.0",
"bcrypt": "~5.1.1",
"date-fns": "~2.30.0",
"dotenv": "~16.3.1",
"handlebars": "~4.7.7",
"jsonwebtoken": "~9.0.2",
"moment": "~2.29.4",
"mongoose": "~8.0.0",
"node-schedule": "~2.1.0",
"nodemailer": "~6.9.7",
"qrcode": "~1.5.1",
"stripe": "~14.3.0",
"wkhtmltopdf": "~0.4.0"
},
"browserslist": "> 0.5%, last 2 versions, Firefox ESR, not dead",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}