-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.75 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.75 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "le-bon-plan-backend",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"private": true,
"scripts": {
"clean": "rimraf dist",
"compile": "cross-env-shell babel src -d dist --source-maps --extensions '.ts'",
"build:ts": "npm run clean && npm run compile",
"typecheck": "tsc --p .",
"build-typecheck": "npm run typecheck && npm run build:ts",
"start:prod": "yarn build-typecheck && node dist/index.js",
"start:dev": "ts-node ./dist/index.js",
"test": "jest",
"test:watch": "jest --watchAll",
"start": "nodemon dist/index.js",
"start:db": "docker compose up -d mongo",
"build": "docker compose build",
"prepare": "is-ci || husky install",
"lint": "eslint",
"lint:fix": "eslint --fix",
"lint:fix:ts": "eslint . --ext .ts --fix",
"prettier": "prettier \"{src,views}/**/*.{ts,js,css}\" --write"
},
"lint-staged": {
"{src,views}/*.{ts,js,css}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint . --ext .ts --fix"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/mongoose": "^5.11.97",
"bcrypt": "^5.0.1",
"change-case": "~4.1.2",
"cookie-parser": "^1.4.6",
"crypto": "^1.0.1",
"dotenv": "^16.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"is-ci": "3.0.1",
"jest-cli": "^27.5.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.12",
"passport": "^0.5.0",
"passport-local": "^1.0.0",
"statuses": "~2.0.1",
"uuid": "8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/node": "^7.16.8",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.21",
"@types/statuses": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"babel-jest": "^27.5.1",
"cross-env": "^7.0.3",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-jest": "26.1.1",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"node-dev": "^7.1.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"regenerator-runtime": "^0.13.9",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"standard": "^16.0.4",
"ts-node": "^10.7.0",
"tslint": "^6.1.3",
"typescript": "^4.6.2"
}
}