forked from kickstartDS/stackbit-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 2.19 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": "@kickstartds/storyblok-starter-ds-agency",
"version": "1.0.0",
"license": "(MIT OR Apache-2.0)",
"author": {
"name": "Jonas Ulrich",
"email": "[email protected]"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"ssl-proxy": "local-ssl-proxy --source 3010 --target 3000 --cert localhost.pem --key localhost-key.pem",
"converter": "esbuild helpers/createStoryblokConfig.ts --outfile=helpers/createStoryblokConfig.js --bundle --platform=node --target=node16 && node helpers/createStoryblokConfig.js",
"postinstall": "cp -r node_modules/@kickstartds/ds-agency/dist/static/* public/",
"create-stackbit-config": "kickstartDS cms stackbit --components-path node_modules/@kickstartds/ds-agency/dist/components --configuration-path cms --update-config false",
"create-stackbit-presets": "rm -rf .stackbit/presets/images && cp -r node_modules/@kickstartds/ds-agency/dist/static/img/screenshots .stackbit/presets/images && node scripts/generatePresets.js"
},
"dependencies": {
"@kickstartds/base": "2.3.0-beta.1",
"@kickstartds/blog": "2.3.0-beta.1",
"@kickstartds/core": "3.0.0-beta.0",
"@kickstartds/ds-agency": "^3.6.4",
"@kickstartds/form": "2.3.0-beta.1",
"@types/node": "20.4.5",
"@types/react": "18.2.17",
"@types/react-dom": "18.2.7",
"eslint": "8.45.0",
"eslint-config-next": "13.4.12",
"front-matter": "^4.0.2",
"lazysizes": "^5.3.2",
"next": "13.4.12",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@kickstartds/jsonschema-utils": "^2.12.1",
"@kickstartds/jsonschema2netlifycms": "^2.8.3",
"@kickstartds/jsonschema2stackbit": "^1.3.1",
"@kickstartds/jsonschema2storyblok": "^1.5.6",
"@kickstartds/jsonschema2types": "^1.1.25",
"@kickstartds/jsonschema2uniform": "^1.3.3",
"@kickstartds/style-dictionary": "^2.2.1",
"@netlify/plugin-nextjs": "^5.2.2",
"@stackbit/cms-git": "^0.3.34",
"@stackbit/types": "^0.10.14",
"esbuild": "^0.19.5",
"import-meta-resolve": "~3.0.0",
"json-schema-typed": "~8.0.1",
"kickstartds": "3.0.0-next.11",
"typescript": "5.1.6"
}
}