forked from GSG-G10/bastta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.47 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
{
"name": "bastta",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node server/src/index.js",
"dev": "NODE_ENV=development nodemon server/src/index.js",
"test": " NODE_ENV=test jest --coverage",
"watch": " NODE_ENV=test jest --coverage --watch",
"client": "cd client && npm start",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-G10/bastta.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-G10/bastta/issues"
},
"homepage": "https://github.com/GSG-G10/bastta#readme",
"devDependencies": {
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^27.3.1",
"nodemon": "^2.0.15",
"pre-commit": "^1.2.2",
"supertest": "^6.1.6"
},
"dependencies": {
"aws-sdk": "^2.1037.0",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.27.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"moment": "^2.29.1",
"pg": "^8.7.1"
},
"engines": {
"node": "16.x"
},
"pre-commit": [
"test"
]
}