-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 KB
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
{
"name": "Quack-Node-Backend",
"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"
},
"engines": {
"node": "16.x"
},
"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.23",
"@types/pg": "^7.14.11",
"eslint": "^7.25.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"supertest": "^6.1.3"
},
"dependencies": {
"@alch/alchemy-web3": "^1.0.2",
"connect-timeout": "^1.9.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"node-fetch": "^2.6.1",
"pg": "^8.6.0",
"truffle-hdwallet-provider": "^1.0.17",
"web3": "^1.3.5",
"web3-eth": "^1.3.5"
}
}