-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 902 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 902 Bytes
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": "picturest-node",
"version": "0.0.1",
"description": "Nuclio pinterest clone API",
"main": "src/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"start:dev": "nodemon src/index.js",
"start": "node src/index.js"
},
"author": "eaarranz",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cuid": "^2.1.8",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-validator": "^6.9.2",
"mongoose": "^5.11.7",
"morgan": "^1.10.0",
"socket.io": "^4.0.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^7.14.0",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"supertest": "^6.1.3"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}