-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 918 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 918 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
{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "nodemon --exec babel-node ./src/server.js",
"build": "rm -rf ./dist && babel src --out-dir dist",
"production": "node ./dist/server.js"
},
"author": "Dmitry Marinov",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.6.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-oauth-server": "^2.0.0",
"express-validator": "^6.2.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"oauth2-server": "^3.0.1",
"uuidv4": "^5.0.1"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"nodemon": "^1.19.4"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
}
}