forked from 4GeeksAcademy/expressjs-rest-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.68 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
52
53
54
55
56
57
{
"name": "100-4GeeksAcademy",
"version": "1.0.0",
"description": "",
"main": "app.js",
"dependencies": {
"@types/ejs": "^3.0.6",
"@types/express-jwt": "^6.0.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"dotenv-override": "^5.0.1",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-jwt": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"node-env-file": "^0.1.8",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"tsc-watch": "^4.2.9",
"typeorm": "^0.2.32"
},
"devDependencies": {
"@admin-bro/express": "^3.1.0",
"@admin-bro/typeorm": "^1.4.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/express-list-endpoints": "^4.0.1",
"@types/flat": "^5.0.1",
"@types/jsonwebtoken": "^8.5.1",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.37",
"@types/react-redux": "^7.1.16",
"@types/styled-system": "^5.1.11",
"admin-bro": "^4.0.1",
"admin-bro-typeorm": "^0.1.6-alpha.9",
"express-formidable": "^1.2.0",
"express-list-endpoints": "^5.0.0",
"express-session": "^1.17.1",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "NODE_ENV=development tsc-watch --project . --onSuccess 'nodemon ./dist/app.js'",
"build": "rm -rf ./dist && tsc --project ./",
"makemigrations": "typeorm migration:generate -n M && npm run build",
"migrate": "typeorm migration:run"
},
"keywords": [],
"author": "Manuel Ortega Carcamo",
"license": "ISC"
}