This repository was archived by the owner on Mar 31, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.48 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.48 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
{
"name": "kodebi-server",
"version": "1.0.1",
"description": "",
"main": "src/server.js",
"scripts": {
"dev": "nodemon",
"start": "node --es-module-specifier-resolution=node ./src/server.js",
"heroku-postbuild": "cd client && npm ci && npm run build",
"test": "NODE_ENV=test && mocha --check-leaks --node-option=es-module-specifier-resolution=node --input-type=module --timeout 10000 --require chai/register-should.js ./test/*.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/kodebi/kodebi-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kodebi/kodebi-server/issues"
},
"homepage": "https://github.com/kodebi/kodebi-server#readme",
"devDependencies": {
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"mocha": "9.2.0",
"nodemon": "^2.0.15",
"prettier": "2.4.1"
},
"dependencies": {
"compression": "1.7.4",
"cookie-parser": "1.4.6",
"cors": "2.8.5",
"dotenv": "16.0.0",
"esm": "3.2.25",
"express": "4.17.2",
"express-jwt": "6.1.0",
"express-validator": "^6.14.0",
"helmet": "5.0.2",
"imagekit": "3.2.4",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.21",
"mongoose": "6.2.1",
"multer": "1.4.4",
"nodemailer": "6.7.2"
},
"keywords": [
"kodebi"
]
}