-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "back-end",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "jest --verbose --runInBand --testLocationInResults --detectOpenHandles --setupFiles dotenv/config",
"test:watch": "npm run test -- --watch",
"start": "node -r dotenv/config server.js",
"start:watch": "nodemon -r dotenv/config server.js",
"setup-db": "node -r dotenv/config setup-db.js",
"setup-heroku": "heroku run npm run setup-db",
"sync-db": "node -r dotenv/config lib/utils/syncdatabase.js"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/eslint-parser": "^7.15.0",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@types/jest": "^27.0.1",
"@types/pg": "^8.6.1",
"eslint": "^7.32.0",
"jest": "^27.0.6",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"supertest": "^6.1.6"
},
"dependencies": {
"body-parser": "^1.19.0",
"card-deck": "^1.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"pg": "^8.7.1",
"sequelize": "^6.6.5",
"superagent": "^6.1.0",
"twilio": "^3.67.0"
}
}