-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 745 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 745 Bytes
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
{
"name": "aula-back-filtros",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "tsc && node ./build/index.js",
"dev": "tsnd --transpile-only --ignore-watch node_modules ./src/index.ts",
"build": "tsc",
"migrations": "tsnd ./src/data/migrations.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "4.17.0",
"knex": "^0.21.1",
"mysql": "^2.18.1"
},
"devDependencies": {
"@types/cors": "^2.8.8",
"@types/express": "4.17.0",
"@types/knex": "^0.16.1",
"@types/node": "^13.7.7",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
}
}