-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.37 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
44
45
46
47
48
{
"name": "ecoleta",
"version": "1.0.0",
"scripts": {
"build": "tsc",
"dev:server": "ts-node-dev --transpile-only --ignore-watch node_modules src/server.ts",
"knex:migrate": "knex migrate:latest --knexfile knexfile.ts",
"knex:seed": "knex seed:run --knexfile knexfile.ts",
"test": "jest --runInBand"
},
"license": "MIT",
"dependencies": {
"@hapi/boom": "^10.0.1",
"celebrate": "^15.0.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"helmet": "^7.0.0",
"knex": "^3.1.0",
"multer": "^1.4.5-lts.1",
"sqlite3": "^5.0.0"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/factory-girl": "^5.0.2",
"@types/helmet": "^4.0.0",
"@types/jest": "^29.5.4",
"@types/multer": "^1.4.3",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^5.2.1",
"factory-girl": "^5.0.4",
"jest": "^29.6.4",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.8.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4"
}
}