-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.69 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rimraf ./dist && swc src -d dist --copy-files",
"start": "npm run build && NODE_ENV=development node dist/index.js",
"lint": "eslint --ignore-path .gitignore --ext .ts src/",
"lint:fix": "npm run lint -- --fix",
"dev": "nodemon src/index.ts",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"keywords": [
"Typescript",
"Node JS",
"Express",
"MongoDB"
],
"author": "",
"license": "ISC",
"dependencies": {
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-async-handler": "^1.1.4",
"helmet": "^6.0.0",
"hpp": "^0.2.3",
"lodash": "^4.17.21",
"mongoose": "^6.6.1",
"morgan": "^1.10.0",
"snappy": "^7.2.2",
"validator": "^13.7.0",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.23",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/hpp": "^0.2.2",
"@types/lodash": "^4.14.185",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.14",
"@types/validator": "^13.7.6",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.19",
"prettier": "2.8.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.1",
"typescript": "^4.8.3"
}
}