-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
76 lines (76 loc) · 2.13 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
{
"name": "bedrock-api",
"description": "Bedrock API",
"version": "0.0.1",
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"start": "node --watch src/index.js",
"debug": "MONGO_DEBUG=true yarn start",
"staging": "source .env.staging && node --watch src/index.js",
"production": "source .env.production && node --watch src/index.js",
"start:production": "node src/index",
"lint": "eslint",
"test": "jest",
"test:watch": "jest --watch -i",
"fixtures:load": "./scripts/fixtures/load",
"fixtures:reload": "./scripts/fixtures/reload",
"fixtures:export": "./scripts/fixtures/export",
"docs:generate": "./scripts/docs/generate"
},
"dependencies": {
"@bedrockio/config": "^2.2.3",
"@bedrockio/fixtures": "^1.2.5",
"@bedrockio/logger": "^1.0.8",
"@bedrockio/model": "^0.7.3",
"@bedrockio/yada": "^1.2.3",
"@google-cloud/storage": "^7.11.1",
"@koa/cors": "^4.0.0",
"@koa/router": "^12.0.0",
"@sentry/node": "^7.56.0",
"@simplewebauthn/server": "^8.3.5",
"bcrypt": "^5.1.0",
"commander": "^12.1.0",
"fast-csv": "^5.0.1",
"front-matter": "^4.0.2",
"glob": "^11.0.0",
"google-auth-library": "^9.2.0",
"html-to-text": "^9.0.5",
"jsonwebtoken": "^9.0.0",
"jszip": "^3.10.1",
"koa": "^2.14.2",
"koa-body": "^6.0.1",
"koa-compose": "^4.1.0",
"lodash": "^4.17.21",
"marked": "^10.0.0",
"mongoose": "^8.6.3",
"mustache": "^4.2.0",
"nanoid": "3.3.5",
"postmark": "^3.11.0",
"qs": "^6.11.0",
"speakeasy": "^2.0.0",
"twilio": "^4.19.0",
"verify-apple-id-token": "^3.1.0"
},
"devDependencies": {
"@bedrockio/prettier-config": "^1.0.2",
"@shelf/jest-mongodb": "^4.2.0",
"@sinonjs/fake-timers": "^10.3.0",
"eslint": "^8.43.0",
"eslint-plugin-bedrock": "^1.0.26",
"jest": "^29.5.0",
"jest-changed-files": "^29.5.0",
"jest-environment-node": "^29.5.0",
"jest-util": "^29.5.0",
"mongodb": "^6.5.0",
"prettier": "^2.8.8",
"prettier-eslint": "^15.0.1",
"supertest": "^6.3.3"
},
"volta": {
"node": "20.15.1",
"yarn": "1.22.22"
}
}