-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 946 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
{
"name": "nodejs-starter",
"version": "1.0.0",
"description": "A simple NodeJS Starter",
"main": "src/index.js",
"scripts": {
"dev": "npm run lint && nodemon --exec npm run start-dev-server -- src",
"start-dev-server": "babel-node src",
"lint": "eslint src --fix",
"start": "node server",
"build": "npm run lint && babel src --out-dir server"
},
"author": {
"name": "Gabriel Marote",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Gamarote/NodeJS-Starter.git"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"nodemon": "^1.17.3"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3"
}
}