-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 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
{
"name": "api-rest",
"version": "1.0.0",
"description": "API-Rest NodeJS-Express-TypeORM",
"main": "index.js",
"author": "Antonio Paya Gonzalez",
"license": "MIT",
"scripts": {
"test": "mocha -r ts-node/register ./test/**/*.spec.ts",
"build": "tsc",
"dev": "ts-node ./src/server.ts",
"start-dev": "nodemon --ext ts --exec ts-node --delay 3 ./src/server.ts",
"start-prod": "nodemon ./dist/server.js",
"prod": "npm run build && npm run start-prod"
},
"dependencies": {
"@types/body-parser": "^1.17.1",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/jsonwebtoken": "^8.3.6",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.2",
"reflect-metadata": "^0.1.13",
"sqlite3": "^4.1.1",
"typeorm": "^0.2.25",
"typescript": "^3.7.4"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"mocha": "^7.0.0",
"ts-node": "^8.4.1"
}
}