-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.65 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
48
49
50
51
52
53
54
55
{
"name": "grindery-delight-backend",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/grindery-io/grindery-delight-backend.git",
"author": "Mauricio Junior <mauriciojunior@Mauricios-MacBook-Air.local>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "nodemon src/index.js",
"start": "node src/index.js",
"test": "mocha src/test/*.test.js --config mocha.mocharc.cjs",
"prettier:check": "prettier --check \"**/*.{js,json,md,ts,yml}\"",
"prettier:write": "prettier --write \"**/*.{js,json,md,ts,yml}\"",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"axios": "^1.3.4",
"axios-cookiejar-support": "^4.0.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"express": "^4.18.2",
"express-jsdoc-swagger": "^1.8.0",
"express-validator": "^6.15.0",
"fcm-notification": "^2.0.0",
"firebase": "^9.21.0",
"firebase-admin": "^11.8.0",
"googleapis": "^118.0.0",
"grindery-nexus-client": "1.0.1",
"jsonwebtoken": "^9.0.0",
"jwt-decode": "^3.1.2",
"mongodb": "^5.1.0",
"mongodb-memory-server": "^8.12.2",
"node-webhooks": "^1.4.2",
"puppeteer": "^19.9.0",
"sinon": "^15.0.4",
"tough-cookie": "^4.1.2"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"eslint": "^8.41.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.21",
"prettier": "2.8.4",
"standard": "^17.1.0"
}
}