-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.15 KB
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
{
"name": "notes-node-express",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node index.js",
"dev": "NODE_ENV=development nodemon index.js",
"lint": "npm run lint",
"test": "NODE_ENV=test jest --verbose --silent",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VeroMoreno/notes-node-express.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/VeroMoreno/notes-node-express/issues"
},
"homepage": "https://github.com/VeroMoreno/notes-node-express#readme",
"devDependencies": {
"jest": "^26.6.3",
"nodemon": "2.0.7",
"standard": "16.0.3",
"supertest": "^6.1.3"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "2.8.5",
"dotenv": "8.2.0",
"express": "4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "5.11.19",
"mongoose-unique-validator": "^2.0.3"
},
"eslintConfig": {
"extends": "./node_modules/standard/eslintrc.json",
"env": {
"jest": true
}
},
"jest": {
"testEnvironment": "node"
}
}