-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.52 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
{
"name": "sleepycatcher_api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/Sleepycatcher/sleepycatcher_api.git",
"author": "alexis mouchon <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "clear || cls & nodemon --config nodemon.json src/app.ts",
"build": "tsc",
"start": "node dist/src/app.js"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.2",
"@types/config": "^3.3.0",
"@types/cors": "^2.8.13",
"@types/jsonwebtoken": "^9.0.0",
"@types/lodash": "^4.14.191",
"@types/mongoose": "^5.11.97",
"@types/nanoid": "^3.0.0",
"@types/node": "^18.11.18",
"@types/pino-pretty": "^5.0.0",
"@types/typescript": "^2.0.0",
"@types/yup": "^0.32.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"config": "^3.3.8",
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"dotenv-flow": "^3.2.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"mongoose": "^6.8.3",
"nanoid": "^4.0.0",
"pino": "5.x",
"pino-pretty": "^9.1.1",
"prettier": "^2.8.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/dotenv-flow": "^3.2.0",
"@types/express": "^4.17.15",
"@types/pino": "5.x"
}
}