-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
33 lines (33 loc) · 946 Bytes
/
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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --require dotenv/config --transpileOnly --ignore-watch node_modules src/server.ts",
"tmp": "ts-node-dev --require dotenv/config --ignore-watch node_modules src/controllers/ItemsController.ts",
"knex:seed": "knex --knexfile knexfile.ts seed:run",
"knex:migrate": "knex --knexfile knexfile.ts migrate:latest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"celebrate": "^12.1.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"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",
"@types/multer": "^1.4.3",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.9.3"
}
}