-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.53 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
{
"name": "spaceapi",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha dist/test/ --timeout 10000",
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"start": "npm run build && node dist/server.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [],
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.227.1",
"bcrypt-nodejs": "latest",
"body-parser": "^1.18.2",
"connect-flash": "~0.1.1",
"cookie-parser": "~1.4.3",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"ejs": "~2.5.2",
"email-templates": "^3.6.0",
"email-templates-v2": "^2.0.3",
"express": "^4.16.3",
"express-mailer": "^0.3.1",
"express-session": "~1.14.1",
"faker": "^4.1.0",
"method-override": "~2.3.6",
"moment": "^2.22.1",
"mongoose": "^5.0.11",
"morgan": "^1.9.0",
"nodemailer": "^4.6.4",
"passport": "~0.3.2",
"passport-facebook": "~2.1.1",
"passport-google-oauth": "~1.0.0",
"passport-local": "~1.0.0",
"passport-twitter": "~1.0.4",
"path": "^0.12.7",
"promise": "^8.0.1",
"rimraf": "^2.6.2"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^2.0.1",
"coveralls": "^3.0.0",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.6.0",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1"
}
}