-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.6 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
44
45
46
47
{
"name": "nifty-backend-express",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "jest --testRunner=jest-circus/runner tests/Nifty.test.js",
"test:user": "jest --testRunner=jest-circus/runner tests/user.test.js",
"test:campaign": "jest --testRunner=jest-circus/runner tests/campaign.test.js",
"test:merchant": "jest --testRunner=jest-circus/runner tests/merchant.test.js",
"test:reward": "jest --testRunner=jest-circus/runner tests/reward.test.js",
"test:collection": "jest --testRunner=jest-circus/runner tests/collection.test.js",
"mock:users": "node ./scripts/mock/users.js",
"mock:campaigns": "node ./scripts/mock/campaigns.js",
"mock:merchant": "node ./scripts/mock/merchant.js",
"mock:rewards": "node ./scripts/mock/rewards.js",
"mock:collection": "node ./scripts/mock/collection.js",
"start": "nodemon server.js",
"deploy:dev": "heroku git:remote -a nifty-dev && git push heroku development:main",
"deploy:prod": "heroku git:remote -a nifty && git push heroku main:main"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"ethers": "^5.6.8",
"express": "^4.18.1",
"express-jsdoc-swagger": "^1.6.8",
"express-validator": "^6.14.1",
"helmet": "^5.1.0",
"mongoose": "^6.3.4",
"morgan": "^1.10.0",
"nodemon": "^2.0.16",
"randomstring": "^1.2.2"
},
"devDependencies": {
"jest": "^28.1.0",
"request": "^2.88.2",
"supertest": "^6.2.3"
},
"jest": {
"testEnvironment": "node",
"verbose": true
}
}