-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.42 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": "generic-admin-system",
"version": "1.0.0",
"description": "API to serve an basic admin system",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development nodemon src/server.ts",
"prebuild": "rimraf dist",
"build": "sucrase ./src -d ./dist --transforms typescript,imports"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luluiz/api-generic-admin-system.git"
},
"author": "Luiz Bezerra",
"license": "ISC",
"bugs": {
"url": "https://github.com/luluiz/api-generic-admin-system/issues"
},
"homepage": "https://github.com/luluiz/api-generic-admin-system#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.1.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.19",
"moment": "^2.27.0",
"moment-timezone": "^0.5.31",
"mongoose": "^5.9.28",
"mongoose-validator": "^2.1.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.7",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.7",
"@types/helmet": "0.0.47",
"@types/jsonwebtoken": "^8.5.0",
"@types/moment": "^2.13.0",
"@types/moment-timezone": "^0.5.30",
"@types/mongodb": "^3.5.25",
"@types/mongoose": "^5.7.36",
"eslint": "^7.6.0",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"sucrase": "^3.15.0",
"typescript": "^3.9.7"
}
}