-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 974 Bytes
/
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": "otc-api",
"version": "1.0.0",
"description": "NodeJS Rest API Backend Service",
"main": "server.js",
"scripts": {
"test": "jest --coverage",
"start": "nodemon server",
"build:css": "postcss public/css/tailwind.css -o public/css/styles.css",
"generate-docs": "jsdoc -c jsdoc.json"
},
"keywords": [
"NodeJs",
"RestAPI",
"service"
],
"author": "Felice Forgione",
"license": "MIT",
"jest": {
"modulePathIgnorePatterns": [
"./jenkins/workspace/"
]
},
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.3",
"swagger-ui-express": "^4.6.2"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"jest": "^29.5.0",
"jsdoc": "^4.0.2",
"nodemon": "^2.0.22",
"postcss": "^8.4.22",
"postcss-cli": "^10.1.0",
"tailwindcss": "^3.3.1"
}
}