-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.35 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
45
46
47
48
49
50
{
"name": "forge-api-starter",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "rm -rf ./dist;tsc --build",
"dev": "nodemon -r tsconfig-paths/register src/index.ts",
"prestart": "npx knex migrate:latest",
"rollback-migration": "knex migrate:rollback",
"seed": "npx knex seed:run",
"start": "node dist/index.js",
"lint": "eslint \"./src/**\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"config": "^3.3.11",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"express-fileupload": "^1.4.3",
"express-rate-limit": "^7.2.0",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"knex": "^3.1.0",
"log4js": "^6.9.1",
"pg": "^8.11.3"
},
"devDependencies": {
"@types/config": "^3.3.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-fileupload": "^1.4.4",
"@types/knex": "^0.16.1",
"@types/node": "^20.11.24",
"@types/pg": "^8.11.2",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tslint": "^6.1.3",
"typescript": "^5.3.3"
}
}