-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.55 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
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/plugin-transform-arrow-functions": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@prisma/client": "^4.0.0",
"@sendgrid/mail": "^7.6.0",
"axios": "^0.27.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv-defaults": "^3.0.0",
"express": "^4.17.1",
"express-jwt": "^6.1.0",
"express-oauth2-jwt-bearer": "^1.1.0",
"jwks-rsa": "^2.0.5",
"mongoose": "^6.0.13",
"nodemon": "^2.0.15",
"pm2": "^5.2.0",
"prisma": "^4.0.0",
"uuidv4": "^6.2.12",
"yarn": "^1.22.17"
},
"scripts": {
"server": "npx nodemon src/server.js --ext js --watch src --exec babel-node",
"azure": "babel-node src/server.js",
"lint": "./node_modules/.bin/eslint --config=./.eslintrc.json .",
"lint-fix": "./node_modules/.bin/eslint --config=./.eslintrc.json . --cache --fix"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
},
"devDependencies": {
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
}
}