-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
{
"name": "student-projects",
"version": "1.0.0",
"description": "A portal where students can pitch project proposals and solicit participants",
"main": "index.js",
"scripts": {
"lint": "eslint . --fix",
"seed": "node ./seed.js",
"start": "node ./server.js | pino-pretty",
"start:dev": "nodemon ./server.js | pino-pretty",
"test": "jest ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/SamMaxwell/student-projects.git"
},
"keywords": [
"student",
"project",
"portal",
"pitch",
"ideas",
"solicit",
"participants"
],
"author": "Sam Maxwell",
"license": "MIT",
"bugs": {
"url": "https://github.com/SamMaxwell/student-projects/issues"
},
"homepage": "https://github.com/SamMaxwell/student-projects#readme",
"devDependencies": {
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
},
"dependencies": {
"bcrypt": "^5.0.1",
"connect-session-sequelize": "^7.1.1",
"dayjs": "^1.10.4",
"dotenv": "^9.0.1",
"express": "^4.17.1",
"express-handlebars": "^5.3.2",
"express-session": "^1.17.1",
"mysql2": "^2.2.5",
"pino-http": "^5.5.0",
"pino-pretty": "^4.8.0",
"sequelize": "^6.6.2"
}
}