-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "default-project",
"version": "0.0.0",
"description": "",
"main": "src/app.js",
"exports": "./dist/app.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --project .",
"start": "npm run build && node dist/app.js",
"dev": "nodemon src/app.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "npm run lint --fix",
"lint-staged": "lint-staged",
"prettier": "prettier --write src/**/*.ts",
"prepare": "husky install"
},
"author": "",
"license": "MIT",
"dependencies": {
"dotenv": "^16.0.0",
"express": "^4.17.2",
"mongoose": "^6.2.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"nodemon": "^2.0.15",
"prettier": "2.6.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"*.{ts,js,md}": "prettier --write"
}
}