forked from stelace/stelace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
146 lines (146 loc) · 4.47 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "stelace-server",
"version": "1.0.0-beta.8",
"description": "API server for Platforms built to last",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/stelace/stelace.git"
},
"main": "index.js",
"author": "Stelace (https://stelace.com)",
"homepage": "https://github.com/stelace/stelace",
"license": "GPL-3.0",
"keywords": [
"API",
"server",
"nodejs",
"platform",
"marketplace",
"stelace",
"backend",
"search",
"automation",
"serverless",
"authentication",
"headless-cms"
],
"scripts": {
"start": "node server/start.js",
"dev": "ROARR_LOG=true npm run start",
"pretest": "NODE_ENV=test node test/pretest.js",
"plugins": "npm run plugins:install && npm run plugins:prepare",
"plugins:install": "node scripts/installExternalPlugins.js",
"plugins:prepare": "node scripts/prepareInstalledPlugins.js",
"test": "NODE_ENV=test ava --c $(node -p 'Math.max(os.cpus().length - 2, 1)')",
"test:server": "cp -n .env.example .env && yarn && NODE_ENV=test ava --c $(node -p 'Math.max(os.cpus().length - 2, 1)')",
"test:noconcurrency": "NODE_ENV=test ava --c 1",
"test:ci:integration": "npm run pretest && NODE_ENV=test TESTS=integration ava --c 1 --tap | tap-xunit",
"test:ci:unit": "NODE_ENV=test TESTS=unit ava --c 1 --tap | tap-xunit",
"test:ci:server": "cp -n .env.example .env && yarn && NODE_ENV=test ava --c 1 --tap | tap-xunit",
"seed": "INSTANT_DATA=true npm test scripts/instantData.js",
"seed:ci": "INSTANT_DATA=true npm test scripts/instantData.js -- --tap",
"seed:prod": "PRODUCTION_API_KEYS=true npm run seed",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"knex": "knex",
"docker:db": "docker-compose up -d postgresql redis elasticsearch",
"docker:db:reset": "docker-compose down && docker volume prune -f",
"docker:apm": "COMPOSE_PROJECT_NAME=stelace_monitoring docker-compose -f docker-compose.monitoring.yml",
"release": "standard-version",
"prepare": "husky install"
},
"dependencies": {
"@elastic/elasticsearch": "^7.13.0",
"@hapi/bourne": "^2.0.0",
"@hapi/joi": "^17.1.1",
"aws-param-store": "^3.2.0",
"aws-sdk": "^2.958.0",
"bcrypt": "^5.0.1",
"big.js": "^6.1.1",
"bluebird": "^3.7.2",
"cheerio": "^1.0.0-rc.10",
"cote": "1.0.2",
"cron": "^1.8.2",
"debug": "~4.3.2",
"dotenv": "^10.0.0",
"elastic-apm-node": "~3.17.0",
"glob": "^7.1.7",
"handlebars": "^4.7.7",
"http-errors": "^1.8.0",
"intl": "^1.2.5",
"intl-format-cache": "^4.3.1",
"intl-messageformat": "^4.4.0",
"jose": "^2.0.3",
"jsonwebtoken": "^8.5.1",
"knex": "^0.95.7",
"lodash": "4.17.21",
"mobitel-iso-4217-currencies": "^1.1.1",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"ms": "^2.1.3",
"ngrok": "^4.0.1",
"nodemailer": "^6.6.3",
"objection": "https://github.com/stelace/objection.js.git#stelace",
"objection-db-errors": "^1.1.2",
"openid-client": "4.7.4",
"parse-github-url": "^1.0.2",
"path-to-regexp": "^6.2.0",
"pegjs": "0.10.0",
"pg": "^8.6.0",
"redis": "^3.1.2",
"redlock": "^4.2.0",
"restify": "^8.5.1",
"restify-cors-middleware2": "~2.1.2",
"roarr": "^4.2.5",
"serialize-error": "^8.1.0",
"shelljs": "^0.8.4",
"sinon": "^11.1.2",
"socket.io": "^2.3.0",
"socket.io-redis": "^5.4.0",
"stelace-util-keys": "https://github.com/stelace/stelace-util-keys.git#3.0.1",
"superagent": "~6.1.0",
"useragent": "^2.3.0",
"uuid": "^8.3.2",
"virgen-acl": "^0.0.22",
"vm2": "^3.9.4"
},
"devDependencies": {
"ava": "~3.15.0",
"body-parser": "^1.19.0",
"chalk": "^4.1.1",
"commander": "^8.0.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"express": "^4.17.1",
"husky": "^6.0.0",
"lint-staged": ">=11.1.1",
"lru-cache": "^6.0.0",
"oidc-provider": "^6.31.0",
"puppeteer-core": "^10.1.0",
"semver": "^7.3.5",
"socket.io-client": "^2.4.0",
"sql-fixtures": "^1.0.4",
"standard-version": "^9.3.0",
"supertest": "^4.0.2",
"tap-xunit": "^2.4.1"
},
"engines": {
"node": ">=12.14"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"standard-version": {
"skip": {
"commit": true
}
}
}