-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.58 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.58 KB
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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "node-express-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "babel-watch src/app.js",
"babel-node": "babel-node --",
"dist": "./node_modules/.bin/babel src -d dist --presets=babili",
"dev": "nodemon --exec babel-node src/app.js",
"test": "mocha ./src/tests --timeout 50000 --recursive --require babel-register",
"build": "babel src -d src/dist --copy-files --ignore src/dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seunzone/node-express-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/seunzone/node-express-template/issues"
},
"homepage": "https://github.com/seunzone/node-express-template#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-watch": "2.0.7",
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"cors": "^2.8.5",
"eslint": "^4.18.1",
"express": "^4.16.2",
"express-handlebars": "^3.0.0",
"hbs": "^4.0.1",
"jsonwebtoken": "^8.2.0",
"lodash": "^4.17.5",
"mocha": "^5.0.1",
"mongoose": "^5.3.14",
"validator": "^9.4.1",
"volleyball": "^1.4.1"
},
"devDependencies": {
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"nodemon": "^1.17.1"
}
}