forked from CA-G12/mern-presently.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.07 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
{
"name": "presently",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"init": "npm i && npm run prepare && cd client && npm i",
"build": "tsc",
"start": "cross-env NODE_ENV=production node dist/",
"dev": "cross-env NODE_ENV=development nodemon src/",
"test": "cross-env NODE_ENV=test DATABASE_URL=mongodb://localhost:27017/test jest --no-cache --runInBand",
"tsc-lint": "tsc --noEmit && cd client && npm run tsc-lint",
"lint": "eslint --ignore-path .gitignore --ext .ts src/ && cd client && npm run lint",
"prepare": "husky install",
"seed-db": "ts-node src/scripts/seedDB.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/formidable": "^2.0.5",
"@types/jest": "^29.1.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/markdown-it": "^12.2.3",
"@types/multer": "^1.4.7",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"husky": "^8.0.1",
"jest": "^29.1.2",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"serve": "^14.1.2",
"ts-jest": "^29.0.3",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@types/axios": "^0.14.0",
"axios": "^1.1.3",
"bcrypt": "^5.1.0",
"cloudinary": "^1.32.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"form-data": "^4.0.0",
"formidable": "^2.0.1",
"jsonwebtoken": "^8.5.1",
"markdown-it": "^13.0.1",
"mongo-seeding": "^3.7.2",
"mongoose": "^6.6.5",
"multer": "^1.4.5-lts.1",
"socket.io": "^4.5.3",
"supertest": "^6.3.0",
"yup": "^0.32.11"
}
}