-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.33 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
38
39
40
41
42
43
44
{
"name": "btc-fullstack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "mocha test && npm run lint",
"db:migrate": "knex migrate:latest",
"db:migrate-make": "knex migrate:make",
"db:seed": "knex seed:run",
"db:seed-make": "knex seed:make",
"db:reset": "knex migrate:rollback --all && knex migrate:latest && knex seed:run",
"build": "npm install && cd front && npm install && npm run build && rm -rf ../public && cp -r dist ../public && cd .. && npm run db:migrate && npm run db:seed"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@aws-sdk/client-cognito-identity": "^3.651.1",
"@aws-sdk/client-s3": "^3.651.1",
"@aws-sdk/credential-provider-cognito-identity": "^3.651.1",
"@aws-sdk/s3-request-presigner": "^3.651.1",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"knex": "^3.2.10",
"multer": "^2.1.1",
"pg": "^8.21.0"
},
"devDependencies": {
"chai": "^4.5.0",
"chai-http": "^4.4.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"mocha": "^10.8.2",
"nodemon": "^3.1.14",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0"
}
}