-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "stARTup-gallery",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "jest --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",
"startup": "node index.js"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@types/jest": "^26.0.22",
"@types/pg": "^7.14.11",
"eslint": "^7.24.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"supertest": "^6.1.3"
},
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"inquirer": "^8.0.0",
"open": "^8.0.6",
"pg": "^8.6.0"
}
}