-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 958 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 958 Bytes
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
{
"name": "auth-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"transpile": "babel ./ --ignore node_modules,src,pages --out-dir ./src",
"clean": "rimraf src",
"build": "npm-run-all clean transpile",
"dev": "NODE_ENV=development npm-run-all build start",
"watch:dev": "nodemon"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.6.1",
"pg": "^8.6.0",
"redis": "^3.1.2"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/runtime": "^7.13.10",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
}
}