-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "assignment",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "jest --coverage",
"dev": "nodemon server.js --ignore *.json --ignore sessions/",
"start": "node server.js",
"pretest": "eslint client/client.js app.js server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanielShrimpton/Assignment_2.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DanielShrimpton/Assignment_2/issues"
},
"homepage": "https://github.com/DanielShrimpton/Assignment_2#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-session": "^1.16.1",
"jsdoc": "^3.5.5",
"passport": "^0.4.0",
"passport-spotify": "^1.0.1",
"request": "^2.88.0",
"session-file-store": "^1.2.0",
"supertest": "^4.0.2",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"eslint": "^5.15.2",
"jest": "^24.7.1",
"nodemon": "^1.18.11"
}
}