This repository has been archived by the owner on Aug 1, 2023. It is now read-only.
generated from sjoshi804/MERN-stack-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.95 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
{
"name": "jobz",
"version": "1.0.0",
"description": "A personal management tool with a NLP interface that allows human-like interaction.",
"main": "index.js",
"scripts": {
"postinstall": "npm run build-ts",
"heroku-postbuild": "npm run build-ts && cd client && npm install && npm run build",
"build": "npm run build-ts",
"build-ts": "tsc",
"dev": "nodemon --watch 'server/src/**/*.ts' --ignore 'server/src/**/*.spec.ts' --exec 'ts-node' server/src/index.ts",
"start": "NODE_ENV=production node server/dist/index.js",
"serve": "ts-node server/src/index.ts",
"test": "(echo \"Testing core\" && NODE_ENV=test mocha --exit -r ts-node/register server/src/**/*.spec.ts); (echo \"Testing apps\" && NODE_ENV=test mocha --exit -r ts-node/register server/src/apps/**/*.spec.ts)"
},
"engines": {
"node": "15.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sjoshi804/Jarvis.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sjoshi804/Jarvis/issues"
},
"homepage": "https://github.com/sjoshi804/Jarvis#readme",
"dependencies": {
"@types/express": "^4.17.8",
"@types/mongodb": "^3.5.32",
"@types/socket.io": "^2.1.11",
"@types/uuid": "^8.3.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"fs": "0.0.1-security",
"is-subset-of": "^3.1.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.27.0",
"mongodb": "^3.5.9",
"password-hash": "^1.2.2",
"path": "^0.12.7",
"simple-peer": "^9.9.3",
"socket.io": "^2.3.0",
"uuid": "^8.3.1"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/chai-http": "^4.2.0",
"@types/cors": "^2.8.8",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.10",
"@types/simple-peer": "^9.6.1",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^8.2.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}