-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.47 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
50
51
{
"name": "ufroad-api",
"version": "0.0.1",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env NODE_ENV=dev nodemon --loader esm-module-alias/loader --no-warnings src/server.js",
"lint": "eslint .",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/FLuiz22/ufroad-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FLuiz22/ufroad-api/issues"
},
"homepage": "https://github.com/FLuiz22/ufroad-api#readme",
"aliases": {
"@": "src",
"@util": "src/util",
"@middleware": "src/middleware",
"@config": "src/config",
"@User": "src/modules/User",
"@Curriculum": "src/modules/Curriculum",
"@Course": "src/modules/Course",
"@Class": "src/modules/Class",
"@Auth": "src/modules/User/Auth"
},
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"esm-module-alias": "^2.1.0",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.1"
},
"devDependencies": {
"eslint": "^8.56.0",
"nodemon": "^3.0.1",
"prettier": "^3.1.1"
}
}