-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 862 Bytes
/
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
{
"name": "node_crash_course",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon src/app.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^8.5.5",
"@types/lodash": "^4.14.174",
"@types/nanoid": "^3.0.0",
"bcrypt": "^5.0.1",
"dayjs": "^1.10.7",
"dotenv": "^10.0.0",
"eslint-import-resolver-typescript": "^2.5.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.7",
"nodemon": "^2.0.12",
"pino": "^6.13.3",
"reflect-metadata": "^0.1.13",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.9.6",
"@types/pino": "^6.3.11",
"pino-pretty": "^7.0.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}