-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "ORM-data-modeling-lab",
"version": "1.0.0",
"description": "",
"main": "server.js",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --verbose --runInBand --testLocationInResults --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"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/eslint-parser": "^7.14.7",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@types/jest": "^26.0.23",
"@types/pg": "^8.6.0",
"eslint": "^7.29.0",
"jest": "^27.0.5",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"supertest": "^6.1.3"
},
"dependencies": {
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"heroku": "^7.55.0",
"pg": "^8.6.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.6.4"
}
}