-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
{
"name": "mongodb-intro-workshop",
"version": "1.0.0",
"description": "Assembler School: MongoDB Intro Workshop",
"keywords": [
"mongodb"
],
"author": "Dani Lucaci <[email protected]>",
"license": "MIT",
"private": "true",
"main": "src/index.js",
"scripts": {
"dev:workshop": "nodemon src/00-workshop-demo-files/index.js",
"dev": "nodemon src/index.js",
"test": "jest --watch",
"test:01:schemas": "jest -t 'mongoose schemas' --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/assembler-school/mongodb-intro-workshop.git"
},
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.3.1",
"loglevel": "^1.7.1",
"mongoose": "^5.11.9",
"npm-check-updates": "^10.2.5",
"validator": "^13.5.2"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@types/jest": "^26.0.19",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.15.0",
"jest": "^26.6.3",
"mongodb-memory-server": "^6.9.2",
"morgan": "^1.10.0",
"nodemon": "^2.0.6",
"prettier": "2.2.1",
"supertest": "^6.0.1"
}
}