-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.88 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
{
"name": "FamBestie",
"proxy": "http://localhost:8080/api/v1",
"version": "1.0.0",
"description": "The project is a blog post platform. This project is for coding a template from figma community.",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node dist/server/index.js",
"dev": "cross-env NODE_ENV=development nodemon server/index.ts",
"test": "cross-env NODE_ENV=test jest --forceExit --detectOpenHandles --runInBand server/__test__/",
"build": "tsc",
"lint": "eslint --ext .ts server/",
"lint-fix": "eslint --ext .ts server/ --fix && cd client && npm run lint-fix",
"lint:client": "cd client && npm run lint",
"format-client": "cd client && npm run lint",
"dbBuild": "cross-env NODE_ENV=development ts-node ./server/database/build.ts",
"dbSeed": "cross-env NODE_ENV=development ts-node ./server/database/seed.ts",
"dbBuildProd": "cross-env NODE_ENV=production ts-node ./server/database/build.ts",
"dbSeedProd": "cross-env NODE_ENV=production ts-node ./server/database/seed.ts",
"prepare": "husky install",
"heroku-postbuild": "npm run build && cd client && npm i && npm run build"
},
"engines": {
"node": "16.17.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moustf/FamBestie.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/moustf/FamBestie/issues"
},
"homepage": "https://github.com/moustf/FamBestie#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint-config-airbnb": "^19.0.4",
"express": "^4.18.2",
"joi": "^17.7.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.25.8",
"yup": "^0.32.11"
},
"devDependencies": {
"@commitlint/cli": "^17.4.0",
"@commitlint/config-conventional": "^17.4.0",
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.3",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^8.5.9",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.9",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"concurrently": "^7.6.0",
"eslint": "^8.28.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"nodemon": "^2.0.20",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}