-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 946 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 946 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
{
"name": "nodejs_mystudy",
"version": "1.0.0",
"description": "nodejs sample study",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"auth_bcrypt": "babel-node ./auth/bcrypt/index.js",
"auth_jwt_encode": "babel-node ./auth/jwt/encode.js",
"auth_jwt_decode": "babel-node ./auth/jwt/decode.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gbox3d/nodejs_mystudy.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gbox3d/nodejs_mystudy/issues"
},
"homepage": "https://github.com/gbox3d/nodejs_mystudy#readme",
"dependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"bcrypt": "^5.0.1",
"dot": "^1.1.3",
"dotenv": "^16.0.0",
"env": "^0.0.2",
"fs-extra": "^10.0.1",
"jsonwebtoken": "^8.5.1"
}
}