-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.09 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
70
71
72
73
74
75
76
{
"name": "notedtly",
"version": "1.0.0",
"description": "Social note application",
"main": "index.js",
"engines": {
"node": "12.16.3"
},
"scripts": {
"preinstall": "yarn global add rimraf dotenv",
"test:e2e": "dotenv -e ./env/.env.test -e ./env/.env mocha --recursive -- 'tests/**/*.test.js' --require @babel/register",
"test:coverage": "nyc --reporter=lcov --reporter=html --reporter=text yarn run test:e2e",
"build": "rimraf dist && babel -D src -d dist",
"dev": "yarn run build && dotenv -e ./env/.env nodemon -- node ./dist/index.js",
"serve": "yarn run build && pm2 start dist/index.js",
"start": "node ./dist/index.js",
"lint": "eslint ./src ./tests",
"lint:fix": "eslint ./src ./tests --fix",
"seed": "dotenv -e ./env/.env node dist/database/seed/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mycok/Notedtly.git"
},
"keywords": [
"Node",
"Express",
"GraphQL",
"Mongo"
],
"author": "mycok",
"license": "ISC",
"bugs": {
"url": "https://github.com/mycok/Notedtly/issues"
},
"homepage": "https://github.com/mycok/Notedtly#readme",
"dependencies": {
"apollo-server-express": "^2.10.1",
"bcrypt": "^4.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"graphql": "^14.6.0",
"helmet": "^3.21.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.10",
"pm2": "^4.2.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.6",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"dotenv-cli": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"faker": "^4.1.0",
"gravatar": "^1.8.0",
"husky": "^4.2.3",
"mocha": "^7.1.0",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"rimraf": "^3.0.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint",
"pre-push": "yarn run test:coverage"
}
}
}