-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 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
{
"name": "shoppinglist-front2back",
"version": "1.0.0",
"description": "Shopping list using Vue, Node and Axios",
"main": "server.js",
"scripts": {
"start": "node server/server.js",
"dev": "nodemon server/server.js",
"test": "./node_modules/.bin/jest --runInBand --detectOpenHandles --forceExit ./server/test",
"test-docker": "./node_modules/.bin/jest --runInBand --detectOpenHandles ./server/test"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/HRahikainen/shoppinglist-front2back.git"
},
"author": "Harri Rahikainen",
"license": "MIT",
"homepage": "https://bitbucket.org/HRahikainen/shoppinglist-front2back#readme",
"devDependencies": {
"nodemon": "^1.18.6"
},
"dependencies": {
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"errorhandler": "^1.5.0",
"event-stream": "3.3.4",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"express-session": "^1.15.6",
"jest": "^23.6.0",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.3.12",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"supertest": "^3.3.0"
}
}