-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.11 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
{
"name": "job-finder",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/app.ts",
"build": "tsc -p tsconfig.json && copyfiles -u 1 \"src/views/*\" dist/ && copyfiles -u 2 \"src/views/layouts/*\" dist/views",
"lint": "eslint --fix \"src/**/*{js,jsx,ts,tsx}\"",
"format": "prettier --write --cache --cache-strategy metadata \"src/**/*.{js,jsx,ts,tsx}\"",
"format:lint": "pnpm format && pnpm lint",
"start": "pnpm build && node dist/app.js",
"start:npm": "npm build && node dist/app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"express-handlebars": "^7.1.2",
"prettier": "^3.0.3",
"sequelize": "^6.32.1",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"copyfiles": "^2.4.1",
"eslint": "^8.49.0",
"nodemon": "^3.0.1",
"sequelize-cli": "^6.6.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}