-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.85 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
{
"name": "@cowprotocol/cms-parent",
"version": "0.9.0",
"description": "Cow Protocol CMS",
"private": true,
"license": "(MIT OR Apache-2.0)",
"scripts": {
"dev": "strapi develop",
"start": "strapi start",
"build": "npm run build:strapi && npm run build:lib",
"prebuild:strapi": "cd src/plugins/import-notifications && yarn install && yarn run build && cd ../../..",
"build:strapi": "strapi build",
"build:lib": "npm run clean:clean && npm run gen:types && npm run compile:lib",
"clean:clean": "rimraf lib/dist",
"gen:types": "npx openapi-typescript src/extensions/documentation/documentation/1.0.0/full_documentation.json -o src/gen/types.ts",
"compile:lib": "npx tsc -p lib/tsconfig.json",
"strapi": "strapi",
"publish:lib": "scripts/publish-lib.sh",
"prepublishOnly": "echo '❌ ERROR: The lib should be published from \"lib\" directory. Read README for more information.' && exit 99",
"postinstall": "npx patch-package"
},
"dependencies": {
"@strapi/plugin-documentation": "4.13.3",
"@strapi/plugin-i18n": "4.13.3",
"@strapi/plugin-users-permissions": "4.13.3",
"@strapi/strapi": "4.13.3",
"better-sqlite3": "8.5.0",
"openapi-fetch": "^0.9.3",
"pg": "^8.11.3",
"postinstall-postinstall": "^2.1.0",
"strapi-plugin-import-export-entries": "^1.23.1"
},
"devDependencies": {
"@strapi/plugin-documentation": "4.13.3",
"@strapi/plugin-i18n": "4.13.3",
"@strapi/plugin-users-permissions": "4.13.3",
"@strapi/strapi": "4.13.3",
"better-sqlite3": "8.5.0",
"openapi-typescript": "^6.7.5",
"patch-package": "^8.0.0",
"pg": "^8.11.3",
"rimraf": "^5.0.5"
},
"author": {
"name": "A Strapi developer"
},
"strapi": {
"uuid": "e47cb3b3-cc8d-4b31-bc86-634b30862787"
},
"engines": {
"node": ">=16.0.0 <=20.x.x",
"npm": ">=6.0.0"
}
}