-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1019 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1019 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
38
39
40
{
"name": "01_affside_auth_micro",
"version": "0.1.0",
"description": "Affside Auth Micro micro",
"main": "index.js",
"scripts": {
"restart": "rimraf built && npm run build && npm run start",
"build": "babel src --out-dir built",
"start": "node built/app.js",
"serve": "nodemon --exec npm run restart"
},
"keywords": [
"auth",
"micro",
"node",
"mongo"
],
"author": "Ahmad Mirzaei (@amdev)",
"license": "ISC",
"dependencies": {
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^5.9.5",
"morgan": "^1.10.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"babel-core": "^6.26.3",
"babel-preset-minify": "^0.5.1",
"nodemon": "^2.0.2",
"rimraf": "^3.0.2"
}
}