-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
62 lines (62 loc) · 1.62 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "basic-api",
"version": "0.1.0",
"description": "A Boilerplate Express/ES2015/Mocha/MongoDB API",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"clean": "rm -rf dist && rm -rf tmp",
"webpack": "NODE_ENV=production webpack -p",
"dev": "./node_modules/.bin/nodemon src/index.js --exec ./node_modules/.bin/babel-node --presets es2015,stage-0",
"test": "mocha ./tests/* --compilers js:babel-register",
"lint": "eslint src --ignore-path ./src/boot/import-data.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dbuarque/basic-api.git"
},
"keywords": [
"express",
"mocha",
"es2015",
"es6",
"babel"
],
"author": "Diogenes Ianakiara",
"license": "ISC",
"bugs": {
"url": "https://github.com/dbuarque/basic-api/issues"
},
"homepage": "https://github.com/dbuarque/basic-api#readme",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-loader": "^6.2.3",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.5.2",
"debug": "^2.2.0",
"del": "^2.2.0",
"eslint": "^2.2.0",
"json-loader": "^0.5.4",
"mocha": "^2.4.5",
"nodemon": "^1.8.1",
"should": "^8.2.0",
"source-list-map": "^0.1.5",
"source-map": "^0.5.3",
"supertest": "^1.2.0",
"webpack": "^1.12.13"
},
"dependencies": {
"body-parser": "^1.15.0",
"compression": "^1.6.1",
"connect": "^3.4.1",
"express": "^4.13.4",
"jfs": "^0.2.6",
"mongodb": "^2.1.7",
"mongoose": "^4.4.5"
}
}