-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1021 Bytes
/
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
{
"name": "node-js-noveo-training",
"version": "1.0.0",
"main": "index.js",
"author": "Эльдияр Эмилов <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=development nodemon --exec babel-node index.js",
"postinstall": "link-module-alias",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline"
},
"_moduleAliases": {
"@": "./src"
},
"dependencies": {
"@koa/cors": "2",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"config": "^3.3.0",
"dotenv": "^8.2.0",
"fawn": "^2.1.5",
"joi": "^14.3.1",
"joi-objectid": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-morgan": "^1.0.1",
"koa-router": "^8.0.8",
"lodash": "^4.17.15",
"mongoose": "^5.9.6"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"link-module-alias": "^1.2.0"
}
}