-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.75 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
{
"name": "good-ceramic-dashboard",
"private": true,
"version": "0.13.0",
"description": "A Strapi application",
"scripts": {
"develop": "strapi develop",
"start": "strapi start",
"build": "strapi build",
"strapi": "strapi",
"prepare": "husky install",
"lint": "eslint \"src/plugins/ceramic-feed/**/*.js\" \"config/*.js\" --max-warnings=0",
"lint:fix": "npm run lint -- --fix",
"generate:ceramic:seed": "node src/plugins/ceramic-feed/cli/commands/generate-seed.js",
"client:settings": "node src/plugins/ceramic-feed/cli/commands/client-settings.js"
},
"devDependencies": {
"eslint": "^8.16.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1"
},
"dependencies": {
"@ceramicnetwork/http-client": "^5.2.0",
"@ceramicnetwork/stream-tile": "^5.1.0",
"@orbisclub/orbis-sdk": "^0.4.89",
"@strapi/plugin-i18n": "4.11.4",
"@strapi/plugin-users-permissions": "4.11.4",
"@strapi/provider-upload-aws-s3": "^4.11.4",
"@strapi/strapi": "4.11.4",
"async-lock": "^1.3.1",
"axios": "^0.27.2",
"dids": "^3.1.0",
"form-data": "^4.0.0",
"key-did-provider-ed25519": "^2.0.0",
"key-did-resolver": "^2.0.4",
"localstorage-memory": "^1.0.3",
"multiformats": "^9.7.1",
"pg": "^8.7.3",
"sqlite3": "5.0.8",
"uint8arrays": "^3.0.0"
},
"lint-staged": {
"src/plugins/ceramic-feed/**/*.js": [
"eslint --fix --max-warnings=0",
"git add"
],
"config/*.js": [
"eslint --fix --max-warnings=0",
"git add"
]
},
"author": {
"name": "A Strapi developer"
},
"strapi": {
"uuid": "55c3fc06-5eaa-4cb9-a0de-6012e3fba0e4"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"license": "MIT",
"packageManager": "[email protected]"
}