forked from romandunets/node-express-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.5 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
{
"name": "node-express-skeleton",
"version": "1.0.0",
"description": "Node.js + Express skeleton application",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=dev NODE_CONFIG_DIR=./src/config/ && nodemon -w src --exec \"babel-node src/main.js --presets es2015,stage-0\"",
"test": "export NODE_ENV=test NODE_CONFIG_DIR=./src/config/ && mocha --timeout 10000 --compilers js:babel-core/register ./src/test/*.js ",
"populatedb": "babel-node --presets es2015 ./node_modules/pow-mongodb-fixtures/bin/mongofixtures node-express-skeleton-dev ./src/test/fixtures"
},
"repository": {
"type": "git",
"url": "git+https://github.com/romandunets/node-express-skeleton"
},
"keywords": [
"REST",
"API",
"Node.js",
"wordlist"
],
"author": "Roman Dunets",
"license": "ISC",
"bugs": {
"url": "https://github.com/romandunets/node-express-skeleton"
},
"homepage": "https://github.com/romandunets/node-express-skeleton#readme",
"dependencies": {
"body-parser": "^1.17.2",
"config": "^1.26.2",
"cross-env": "^6.0.3",
"express": "^4.15.3",
"jsonwebtoken": "^7.4.2",
"mongoose": "^4.11.5",
"mongoose-paginate": "^5.0.3",
"morgan": "^1.8.2",
"pow-mongodb-fixtures": "^0.14.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"mocha": "^3.5.3",
"nodemon": "^1.11.0"
}
}