-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·58 lines (58 loc) · 1.89 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
55
56
57
58
{
"name": "jwt-node",
"version": "1.10.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "export $(cat .env | xargs) && env && cross-env NODE_ENV=production node app.js",
"docker": "docker-compose build && docker-compose up",
"dev": "export $(cat .env | xargs) && env && cross-env NODE_ENV=development nodemon app.js",
"debug": "export $(cat .env | xargs) && env && cross-env DEBUG=* node --inspect app.js",
"test": "cross-env NODE_ENV=test jest --config=jest.config.js --coverage",
"release": "standard-version"
},
"keywords": [],
"author": "Fernando Lopez",
"license": "ISC",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@jwt/config": "file:config",
"@jwt/utils": "file:utils",
"@meanie/mongoose-to-json": "^2.4.0",
"autocannon": "^4.0.0",
"axios": "^0.19.0",
"body-parser": "^1.18.3",
"connect-mongo": "^3.2.0",
"cors": "^2.8.5",
"cross-env": "^5.1.6",
"express": "^4.16.3",
"express-graphql": "^0.9.0",
"express-session": "^1.15.6",
"geojson": "^0.5.0",
"graphql": "^14.5.8",
"moment": "^2.24.0",
"moment-timezone": "^0.5.28",
"mongodb-moment": "^1.0.2",
"mongoose": "^5.4.10",
"newrelic": "^5.10.0",
"node-cache": "^5.1.0",
"short-unique-id": "^1.1.1",
"socket.io": "^2.1.1",
"standard-version": "^6.0.1"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^7.5.0",
"@commitlint/config-lerna-scopes": "^8.1.0",
"coveralls": "^3.0.5",
"husky": "^3.0.1",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"shortid": "^2.2.14",
"supertest": "^4.0.2"
}
}