-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1 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
{
"name": "tem-vacina",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --detectOpenHandles",
"start": "nodemon server.js",
"css-build": "node-sass --omit-source-map-url sass/mystyles.scss public/css/mystyles.css",
"css-watch": "npm run css-build -- --watch"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"csurf": "^1.11.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.3",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-validator": "^6.6.0",
"flash": "^1.1.0",
"helmet": "^4.1.0",
"mongoose": "^5.9.22",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"uuid": "^8.3.1"
},
"devDependencies": {
"bulma": "^0.9.0",
"jest": "^26.6.1",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"supertest": "^5.0.0"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}