forked from 0xairdropfarmer/nodejs-restapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 761 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 761 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
{
"name": "makeanodejsrestapi",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/EQuimper/youtube-makeanodejsapi.git",
"author": "EQuimper <quimperemanuel@gmail.com>",
"license": "MIT",
"scripts": {
"dev:build": "webpack -w",
"dev": "cross-env NODE_ENV=development nodemon dist/index.bundle.js"
},
"dependencies": {
"cross-env": "^5.0.0",
"express": "^4.15.3"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.4.0",
"eslint": "^3.19.0",
"eslint-config-equimper": "^2.0.5",
"nodemon": "^1.11.0",
"webpack": "^2.5.1",
"webpack-node-externals": "^1.6.0"
}
}