-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (75 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (75 loc) · 2.28 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
{
"name": "inscribe",
"version": "1.0.0",
"description": "An intuitive and engaging web application that allows users to create and share drawings in real-time with others. Collaborate seamlessly with built-in chat functionality.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon --inspect server.js",
"prod": "cross-env NODE_ENV=production node server.js",
"test": "cross-env NODE_ENV=test jest",
"test:watch": "cross-env NODE_ENV=test jest --watch",
"test:debug": "cross-env NODE_ENV=test node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:coverage": "cross-env NODE_ENV=test jest --coverage",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"prepare": "husky install",
"postinstall": "node ./scripts/patch-gopd.js"
},
"keywords": [
"drawing",
"collaboration",
"realtime",
"canvas",
"socket.io",
"express"
],
"author": {
"name": "Keshab Kumar",
"email": "keshabkumarjha876@gmail.com",
"url": "https://github.com/Keshabkjha",
"linkedin": "https://www.linkedin.com/in/keshabkjha/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Keshabkjha/Inscribe.git"
},
"bugs": {
"url": "https://github.com/Keshabkjha/Inscribe/issues"
},
"homepage": "https://github.com/Keshabkjha/Inscribe#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"http": "^0.0.1-security",
"mongodb": "^6.16.0",
"mongoose": "^8.15.0",
"sanitize-html": "^2.17.0",
"socket.io": "^4.8.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/supertest": "^6.0.3",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.0",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.1.4",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"supertest": "^7.1.1"
}
}