-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.02 KB
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
{
"name": "api_ff",
"version": "1.0.0",
"description": "",
"main": "src/server.js",
"scripts": {
"dev": "tsnd --transpile-only --ignore-watch node_modules --respawn src/server.ts",
"start": "node src/server.js",
"build": "tsc --build",
"clean": "tsc --build --clean",
"knex:migrate": "knex --knexfile knexfile.ts migrate:latest",
"knex:migrate:rollback": "knex --knexfile knexfile.ts migrate:rollback"
},
"author": "Vinicius M. Finger",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.8",
"@types/express": "^4.17.7",
"@types/knex": "^0.16.1",
"@types/mysql": "^2.15.16",
"@types/swagger-jsdoc": "^6.0.0",
"@types/swagger-ui-express": "^4.1.2",
"ts-node-dev": "^1.1.1",
"typescript": "^3.9.9"
},
"dependencies": {
"cors": "^2.8.5",
"crypto-ts": "^1.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.12",
"mysql": "^2.18.1",
"swagger-ui-express": "^4.1.6",
"uuid": "^8.3.2"
}
}