-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.89 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "lattice_project",
"version": "0.1.0",
"description": "A site for machine learning enthusiasts.",
"main": "dist/app.js",
"scripts": {
"start": "node dist/app.js --service=all --env=production",
"linter": "eslint src/**/*.{ts,js,jsx}",
"linter:fix": "eslint src/**/*.{ts,js,jsx} --fix",
"prebuild": "echo prebuild",
"build": "tsc -b",
"start:concur": "concurrently \"tsc -w\" \"nodemon dist\\app.js --service=all --env=development\"",
"start:dev": "nodemon dist/app.js --service=all --env=development",
"watch": "tsc -w",
"pretest": "eslint --ignore-path .gitignore --ext ts,tsx,js,jsx src/*",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paritosh9199/major_project.git"
},
"author": "Paritosh Srivastava",
"license": "ISC",
"bugs": {
"url": "https://github.com/paritosh9199/major_project/issues"
},
"homepage": "https://github.com/paritosh9199/major_project#readme",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/chai": "^4.2.10",
"@types/connect-mongodb-session": "0.0.2",
"@types/cors": "^2.8.6",
"@types/ejs": "^3.0.1",
"@types/express": "^4.17.3",
"@types/express-session": "^1.17.0",
"@types/jsonwebtoken": "^8.3.8",
"@types/lodash": "^4.14.149",
"@types/minimist": "^1.2.0",
"@types/mocha": "^7.0.2",
"@types/mongoose": "^5.7.6",
"@types/multer": "^1.4.2",
"@types/multer-gridfs-storage": "^4.0.0",
"@types/node": "^13.9.0",
"@types/node-fetch": "^2.5.6",
"@types/uuid": "^7.0.0",
"@types/validator": "^12.0.1",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"assert": "^2.0.0",
"chai": "^4.2.0",
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^7.1.0",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"ts-node": "^8.6.2"
},
"dependencies": {
"@sendgrid/mail": "^7.1.0",
"@types/helmet": "0.0.47",
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"connect-mongo": "^3.2.0",
"connect-mongodb-session": "^2.3.1",
"cors": "^2.8.5",
"domino": "^2.1.4",
"ejs": "^3.0.1",
"express": "^4.17.1",
"express-session": "^1.17.0",
"helmet": "^3.22.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"minimist": "^1.2.4",
"mongoose": "^5.9.13",
"multer": "^1.4.2",
"multer-gridfs-storage": "^4.0.2",
"node-fetch": "^2.6.0",
"page-metadata-parser": "^1.1.4",
"path": "^0.12.7",
"typescript": "^3.8.3",
"uuid": "^7.0.2",
"validator": "^12.2.0"
}
}