-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.28 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
{
"name": "pulse",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"dist": "node app.js",
"dev": "nodemon app.js",
"lint": "eslint src public",
"test": "jest --detectOpenHandles --forceExit",
"test-extend": "jest --detectOpenHandles --coverage --forceExit",
"jsdoc": "documentation build src/** public/** -f html --github -o docs",
"jsdoc-lint": "documentation lint src/** public/**",
"style": "sass public/styles/scss/style.scss public/styles/dist.css --no-source-map --style compressed",
"style-watch": "sass --watch public/styles/scss/style.scss public/styles/dist.css --no-source-map --style compressed",
"style-lint": "stylelint \"**/*.scss\"",
"analyze": "npm run lint && npm run test-extend && npm run jsdoc-lint && npm run style-lint",
"build": "npm run test && npm run jsdoc && npm run style"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robjoh01/pulse-ht23.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/robjoh01/pulse-ht23/issues"
},
"homepage": "https://github.com/robjoh01/pulse-ht23#readme",
"dependencies": {
"@2toad/profanity": "^2.2.0",
"@toast-ui/calendar": "^2.1.3",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"chart.js": "^4.4.0",
"connect-flash": "^0.1.1",
"csvtojson": "^2.0.10",
"documentation": "^14.0.2",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
"ejs": "^3.1.9",
"email-validator": "^2.0.4",
"express": "^4.18.2",
"express-fileupload": "^1.4.1",
"express-session": "^1.17.3",
"jsdom": "^22.1.0",
"moment": "^2.29.4",
"multer": "^1.4.5-lts.1",
"ng-circle-progress": "^1.7.1",
"node-cron": "^3.0.2",
"nodemailer": "^6.9.5",
"nodemailer-html-to-text": "^3.2.0",
"nodemon": "^3.0.1",
"promise-mysql": "^5.2.0",
"sass-npm": "^1.0.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"eslint": "^8.51.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"normalize.css": "^8.0.1",
"sass": "^1.66.1",
"stylelint": "^15.10.3",
"stylelint-config-sass-guidelines": "^10.0.0"
}
}