-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.77 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
{
"name": "elly",
"version": "1.0.0",
"description": "A tool for medical workers to easily store and manage patient data.",
"main": "index.js",
"scripts": {
"sass": "sass src/custom.scss dist/styles/bootstrap.css",
"build:css": "sass src/custom.scss dist/styles/bootstrap.css && postcss dist/styles/styles.css --use autoprefixer -o dist/styles/styles.css",
"build:js": "webpack --mode=production",
"build": "npm run build:css && npm run build:js",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alectrify/elly.git"
},
"author": "Alectrify Software",
"license": "ISC",
"bugs": {
"url": "https://github.com/alectrify/elly/issues"
},
"homepage": "https://github.com/alectrify/elly#readme",
"dependencies": {
"@google-cloud/vision": "^2.3.0",
"@popperjs/core": "^2.6.0",
"autoprefixer": "^10.2.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bootstrap": "^5.0.0-beta1",
"chalk": "^4.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dompurify": "^2.2.6",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"fs-extra": "^9.1.0",
"helmet": "^4.4.1",
"jquery": "^3.5.1",
"jsdom": "^16.4.0",
"lodash": "^4.17.20",
"method-override": "^3.0.0",
"mongoose": "^5.11.14",
"multer": "^1.4.2",
"pdf-lib": "^1.16.0",
"pdfjs-dist": "^2.6.347",
"postcss": "^8.2.4",
"serve-favicon": "^2.5.0",
"sharp": "^0.27.1",
"stripe": "^8.135.0",
"validator": "^13.5.2",
"xlsx": "^0.16.9"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.15.2",
"postcss-cli": "^8.3.1",
"sass": "^1.32.6",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0"
}
}