-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.3 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
{
"name": "node-api-starter",
"version": "1.0.0",
"description": "Node Express Api Starter",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon --exec babel-node -- src/index.js",
"test": "mocha --recursive --require babel-register --timeout 15000",
"compile": "$(npm bin)/babel -d lib/ src/",
"postinstall": "$(npm bin)/babel -d lib/ src/",
"prepublish": "npm run compile"
},
"keywords": [
"jwt",
"express",
"es6",
"axios"
],
"repository": {
"type": "git",
"url": "https://github.schibsted.io/next/node-api-starter"
},
"author": "Kim Wijk",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.3.17",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"bcrypt": "^0.8.5",
"body-parser": "^1.14.1",
"cors": "^2.7.1",
"es6-promisify": "^3.0.0",
"express": "^4.13.3",
"jsonwebtoken": "^5.4.1",
"method-override": "^2.3.5",
"mongoose": "^4.2.8",
"morgan": "^1.6.1",
"nodemailer": "^1.10.0"
},
"peerDependencies": {
"express": "^4.0",
"mongoose": "^4.0",
"body-parser": "^1.0"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"axios": "^0.7.0",
"babel-register": "^6.11.6",
"mocha": "^2.3.4"
}
}