-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.77 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
{
"name": "my-grades",
"version": "1.0.0",
"description": "Backend for MyGrades",
"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",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-openapi-validator": "^3.9.2",
"googleapis": "^105.0.0",
"keccak256": "^1.0.2",
"mongoose": "^5.11.8",
"multer": "^1.4.2",
"node-rsa": "^1.1.1",
"nodemailer": "^6.7.7",
"pino": "^5.16.0",
"web3": "^1.3.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"mocha": "^7.0.1",
"nodemon": "^2.0.2",
"pino-pretty": "^3.5.0",
"prettier": "^1.19.1",
"supertest": "^4.0.2"
},
"author": "Carmine DiMascio <[email protected]> (https://github.com/cdimascio)"
}