This repository was archived by the owner on Sep 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.47 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.47 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "peerid-backend",
"version": "0.11.2",
"license": "UNLICENSED",
"description": "Backend module for PeerID application",
"author": {
"name": "PBSA",
"url": "https://github.com/PBSA"
},
"engines": {
"node": ">=10.16.0"
},
"scripts": {
"lint": "eslint src/",
"release": "standard-version",
"release:pre": "npm run release -- --prerelease alpha",
"release:minor": "npm run release – --release-as minor",
"commit": "git-cz",
"serve": "NODE_ENV=development nodemon src/server.js",
"start": "node src/server.js",
"start:api": "MODULE=api node src/server.js",
"test:audit": "audit-ci --config audit-ci.json",
"test:lint": "eslint . --quiet",
"test:mocha": "NODE_ENV=test NODE_APP_INSTANCE=test mocha --exit --timeout 120000",
"test:coverage": "NODE_ENV=test NODE_APP_INSTANCE=test nyc node_modules/.bin/mocha --exit --timeout 120000 && nyc report --reporter=text-summary",
"build:doc": "swagger-jsdoc -d src/modules/api/swagger-definition.js -o docs/swagger.yaml",
"db-migrate-all": "sequelize db:migrate",
"db-migrate-undo": "sequelize db:migrate:undo",
"db-migrate-undo-all": "sequelize db:migrate:undo:all",
"db-seed-all": "sequelize db:seed:all",
"db-seed-undo": "sequelize db:seed:undo",
"db-seed-undo-all": "sequelize db:seed:undo:all"
},
"dependencies": {
"awilix": "^4.2.1",
"axios": "^0.21.0",
"bcrypt": "^5.0.1",
"bignumber.js": "^9.0.0",
"body-parser": "^1.18.3",
"config": "^3.2.0",
"connect-session-sequelize": "^6.0.0",
"cors": "^2.8.5",
"crypto-random-string": "^3.0.1",
"eslint-utils": "1.4.2",
"express": "^4.17.1",
"express-session": "^1.16.2",
"faker": "^4.1.0",
"fs-extra": "^8.1.0",
"handlebars": "^4.7.7",
"inquirer": "^6.5.0",
"joi": "^17.3.0",
"lodash": "^4.17.21",
"log4js": "^4.5.1",
"mkdirp": "^0.5.1",
"moment": "^2.24.0",
"nodemailer": "^6.3.0",
"passport": "^0.4.0",
"passport-discord": "^0.1.4",
"passport-facebook": "^3.0.0",
"passport-google-oauth": "^2.0.0",
"peerplaysjs-lib": "https://gitlab.com/PBSA/PeerplaysIO/tools-libs/peerplaysjs-lib.git#nft-lottery-babel-update",
"pg": "^7.11.0",
"pg-hstore": "^2.3.2",
"psl": "^1.8.0",
"raven": "^2.6.4",
"sequelize": "^5.18.4",
"sequelize-cli": "^5.5.0",
"swagger-ui-express": "^4.0.7",
"tldjs": "^2.3.1",
"uid2": "0.0.3",
"un": "0.0.0",
"url": "^0.11.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^7.6.0",
"audit-ci": "^3.1.1",
"babel-eslint": "^10.0.2",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"chai-url": "^1.0.4",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^2.7.0",
"lint-staged": "^11.1.1",
"mocha": "^6.1.4",
"nodemon": "^2.0.12",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"standard-version": "^9.3.1",
"supertest": "^4.0.2",
"swagger-jsdoc": "^3.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}