forked from bvasko/PlaySpace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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
{
"name": "play-space",
"version": "1.0.0",
"description": "PlaySpace - A social media music sharing app",
"engines": {
"node": "16.13.1"
},
"main": "server.js",
"scripts": {
"eslint-watch": "esw -w --clear \"**/*.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "nodemon server.js esw",
"start": "node server.js",
"seed": "node seeds/seed.js",
"lint": "npm eslint **/*.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"connect-session-sequelize": "^7.0.4",
"cors": "^2.8.5",
"dotenv": "^14.3.2",
"express": "^4.17.1",
"express-handlebars": "^5.2.0",
"express-session": "^1.17.1",
"mysql2": "^2.2.5",
"node-fetch-commonjs": "^3.1.1",
"querystring": "^0.2.1",
"request": "^2.88.2",
"sequelize": "^6.3.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LFerrett/PlaySpace.git"
},
"bugs": {
"url": "https://github.com/LFerrett/PlaySpace/issues"
},
"homepage": "https://github.com/LFerrett/PlaySpace#readme",
"devDependencies": {
"eslint": "^8.7.0",
"eslint-watch": "^8.0.0"
}
}