-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.23 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
{
"name": "ecoletaapi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --transpileOnly --ignore-watch node_modules src/server.ts",
"knex:migrate": "knex --knexfile knexfile.ts migrate:latest",
"knex:seed": "knex --knexfile knexfile.ts seed:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pferreirafabricio/node-ecoletaApi.git"
},
"keywords": [
"REST",
"API",
"NodeJS"
],
"author": "Fabrício Pinto Ferreira",
"license": "MIT",
"bugs": {
"url": "https://github.com/pferreirafabricio/node-ecoletaApi/issues"
},
"homepage": "https://github.com/pferreirafabricio/node-ecoletaApi#readme",
"dependencies": {
"@types/multer": "^1.4.3",
"celebrate": "^12.1.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"knex": "^0.21.1",
"multer": "^1.4.2",
"sqlite3": "^4.2.0"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/hapi__joi": "^17.1.2",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.9.3"
}
}