-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.34 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
66
67
68
69
70
71
72
73
{
"name": "noteverse",
"version": "1.0.0",
"description": "Noteverse is a versatile and intuitive note-taking application designed to simplify and enhance your digital note-taking experience. With Noteverse, you can effortlessly capture and organize your ideas, thoughts, and important information in a seamless and efficient manner.",
"main": "src/index.ts",
"scripts": {
"dev:server": "nodemon --watch 'src/**/*.ts' --exec 'ts-node -r tsconfig-paths/register' src/index.ts",
"dev:client": "cd client && npm run dev",
"dev": "concurrently -n 'server,client' -c 'green,blue' \"npm run dev:server\" \"npm run dev:client\"",
"postinstall": "prisma generate",
"prebuild": "rimraf dist",
"pre-prod": "rimraf dist && npm run build",
"build": "tsc",
"start": "node dist/index.js"
},
"_moduleAliases": {
"@": "dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hayat4144/Noteverse.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Hayat4144/Noteverse/issues"
},
"homepage": "https://github.com/Hayat4144/Noteverse#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/multer": "^1.4.7",
"@types/response-time": "^2.3.5",
"@types/streamifier": "^0.1.0",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"concurrently": "^8.2.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^3.0.1",
"prettier": "^2.8.8",
"prisma": "^5.2.0",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"-": "^0.0.1",
"@prisma/client": "^5.2.0",
"@types/nodemailer": "^6.4.14",
"bcrypt": "^5.1.0",
"cloudinary": "^1.40.0",
"cors": "^2.8.5",
"D": "^1.0.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.1",
"module-alias": "^2.2.3",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.7",
"response-time": "^2.3.2",
"sharp": "^0.32.5",
"streamifier": "^0.1.1",
"tsconfig-paths": "^4.2.0",
"winston": "^3.9.0"
}
}