-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.04 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "newsletter-api",
"version": "1.0.0",
"description": "open source newsletter api",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text --reporter=html mocha src/test/*.js --timeout 10000 -c --require @babel/register --exit",
"start:dev": "npm run migrate && nodemon --exec babel-node ./src/index.js",
"start": "node dist/index.js",
"build": "babel src -d dist",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"migrate:reset": "sequelize db:migrate:undo:all",
"migrate": "sequelize db:migrate ",
"prestart": "npm run migrate",
"pretest": "cross-env NODE_ENV=test npm run migrate:reset && cross-env NODE_ENV=test npm run migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zicli/newsletter-api.git"
},
"keywords": [
"newsletter",
"api",
"graphql"
],
"author": "Zicli Synergy Software Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/zicli/newsletter-api/issues"
},
"homepage": "https://github.com/zicli/newsletter-api#readme",
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"apollo-server-express": "^2.11.0",
"bcryptjs": "^2.4.3",
"chai": "^4.2.0",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^14.6.0",
"graphql-iso-date": "^3.6.1",
"jsonwebtoken": "^8.5.1",
"pg": "^7.18.2",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.5",
"sequelize-cli": "^5.5.1"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.6.2",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"chai-http": "^4.3.0",
"coveralls": "^3.0.6",
"eslint": "^6.2.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^7.1.1",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.19.1",
"nyc": "^14.1.1"
}
}