-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 863 Bytes
/
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
{
"name": "backend-hashtag-generator",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prestart": "node scripts/create-database.js",
"start": "nodemon -r dotenv/config index.js",
"pretest": "node scripts/create-database.js test",
"test": "mocha tests/**/*.js --exit --recursive --timeout 60000 --file ./tests/test-setup.js",
"posttest": "node scripts/drop-database.js test"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.3.4",
"cors": "^2.8.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"pg": "^8.9.0",
"sequelize": "^6.29.0"
},
"devDependencies": {
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"eslint": "^8.35.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"prettier": "2.8.4",
"supertest": "^6.3.3"
}
}