-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.55 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.55 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
{
"name": "ideahacks.la",
"version": "3.0.0",
"engines": {
"node": "16.x"
},
"description": "Website for UCLA's IDEA Hacks",
"main": "index.js",
"scripts": {
"dev": "nodemon server.js",
"format": "npm run format-css && npm run format-html && npm run format-js",
"format-check": "find . -type f \\( -name \"*.js\" -or -name \"*.json\" -or -name \"*.css\" \\) -not -path \"./node_modules/**\" | xargs prettier-check",
"format-css": "find . -type f -name \"*.css\" -not -path \"./node_modules/**\" | xargs prettier --write",
"format-html": "html-beautify -n=true -E=[] -r ./views/**.hbs ./views/partials/**.hbs",
"format-js": "find . -type f \\( -name \"*.js\" -or -name \"*.json\" \\) -not -path \"./node_modules/**\" | xargs prettier --write",
"lint": "eslint --fix --quiet ./**.js ./ideahacks/**.js ./ideahacks/**/**.js ./ideahacks/**/**/**.js",
"mocha": "mocha --recursive --exit ./tests/",
"prepush": "npm run format",
"start": "node server.js",
"test": "npm run format-check && npm run lint && npm run mocha"
},
"lint-staged": {
"*.js": [
"npm run format",
"git add"
],
"*.css": [
"npm run format",
"git add"
],
"*.hbs": [
"npm run format-html",
"git add"
]
},
"nodemonConfig": {
"ignore": [
"public/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/IDEA-Hacks/ideahacks.la.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/IDEA-Hacks/ideahacks.la/issues"
},
"homepage": "https://github.com/IDEA-Hacks/ideahacks.la#readme",
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.20.0",
"express": "^4.18.1",
"express-query-boolean": "^2.0.0",
"express-session": "^1.17.3",
"hbs": "^4.2.0",
"hbs-utils": "0.0.4",
"heroku-ssl-redirect": "^0.1.1",
"mongoose": "^6.5.2",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"serve-favicon": "^2.5.0",
"socket.io": "^4.5.1"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^4.1.0",
"husky": "^8.0.1",
"js-beautify": "^1.14.5",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"prettier-check": "^2.0.0",
"sinon": "^14.0.0",
"supertest": "^6.2.4"
}
}