-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.67 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
{
"name": "storesamadhan",
"version": "1.0.0",
"description": "Store Samadhan App",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"compile": "babel server --out-dir dist --delete-dir-on-start --source-maps inline --copy-files",
"dev": "nodemon server --exec babel-node --config .nodemonrc.json | pino-pretty",
"dev:debug": "nodemon server --exec babel-node --config .nodemonrc.json --inspect | pino-pretty",
"test": "mocha --require @babel/register --exit",
"test:debug": "mocha --require @babel/register --inspect-brk --exit",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-openapi-validator": "^4.10.6",
"firebase-admin": "^10.0.2",
"nanoid": "^3.3.2",
"pino": "^6.10.0",
"razorpay": "^2.8.1"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"mocha": "^8.2.1",
"nodemon": "^2.0.7",
"pino-pretty": "^4.3.0",
"prettier": "^2.2.1",
"supertest": "^6.0.1"
},
"author": "Carmine DiMascio <[email protected]> (https://github.com/cdimascio)"
}