forked from apaichon/node_enterprise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 KB
/
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
40
41
42
{
"name": "node_enterprise",
"version": "1.0.0",
"description": "NodeJS Rest Api for Enterprise",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/index.js --exec babel-node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apaichon/node_enterprise.git"
},
"keywords": [
"NodeJS",
"RestApi",
"Enterprise",
"Course",
"Training"
],
"author": "Apaichon Punopas",
"license": "MIT",
"bugs": {
"url": "https://github.com/apaichon/node_enterprise/issues"
},
"homepage": "https://github.com/apaichon/node_enterprise#readme",
"dependencies": {
"express": "^4.16.2",
"mongodb": "^2.2.33"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"nodemon": "^1.11.0",
"regenerator-runtime": "^0.10.5"
}
}