-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
81 lines (81 loc) · 3.6 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
{
"name": "@kickstartds/storyblok-starter",
"version": "1.0.0",
"license": "(MIT OR Apache-2.0)",
"author": {
"name": "Jonas Ulrich",
"email": "[email protected]"
},
"scripts": {
"dev": "BUILD_ENV=preview next dev",
"build": "npm run build-tokens && npm run blurhashes && next build",
"postbuild": "next-sitemap",
"export": "next build && next export",
"build-preview": "BUILD_ENV=preview npm run build",
"netrc": "plop netrc $STORYBLOK_LOGIN_EMAIL $NEXT_STORYBLOK_OAUTH_TOKEN $STORYBLOK_REGION",
"env": "plop env $NEXT_STORYBLOK_API_TOKEN $NEXT_STORYBLOK_OAUTH_TOKEN $NEXT_STORYBLOK_SPACE_ID",
"netlify-init": "npm run env && npm run netrc && npm run init",
"blurhashes": "mkdir -p public/blurhashes && node scripts/createBlurHashes.js",
"init": "rimraf tmp && mkdir -p tmp/images && node scripts/prepareProject.js && npm run push-components && npm run generate-content-types",
"update-previews": "node scripts/updatePreviews.js",
"start": "next start",
"lint": "next lint",
"init-tokens": "kickstartDS tokens init --token-dictionary-path token/dictionary --branding-token-path token/branding-token.json",
"build-tokens": "kickstartDS tokens compile --token-dictionary-path token/dictionary",
"ssl-proxy": "local-ssl-proxy --source 3010 --target 3000 --cert localhost.pem --key localhost-key.pem",
"pull-content-schema": "storyblok pull-components --space $NEXT_STORYBLOK_SPACE_ID -p types/ && mv types/components.$NEXT_STORYBLOK_SPACE_ID.json types/components-schema.json && mv types/presets.$NEXT_STORYBLOK_SPACE_ID.json types/components-presets.json",
"generate-content-types": "npm run pull-content-schema && storyblok-generate-ts source=./types/components-schema.json target=./types/components-schema",
"push-components": "storyblok push-components cms/components.123456.json --space $NEXT_STORYBLOK_SPACE_ID --presets-source cms/presets.123456.json",
"create-storyblok-config": "kickstartDS cms storyblok --components-path node_modules/@kickstartds/ds-agency/dist/components --configuration-path cms",
"storyblok-logout": "storyblok logout",
"storyblok-login": "storyblok login"
},
"dependencies": {
"@kickstartds/base": "^4.0.2",
"@kickstartds/blog": "^4.0.2",
"@kickstartds/core": "^4.0.2",
"@kickstartds/ds-agency": "^3.6.25",
"@kickstartds/form": "^4.0.2",
"@storyblok/react": "^3.0.9",
"@unpic/pixels": "^1.2.2",
"@unpic/placeholder": "^0.1.2",
"@unpic/react": "^0.1.14",
"blurhash": "^2.0.5",
"fast-glob": "^3.3.2",
"file-system-cache": "^2.4.4",
"lazysizes": "^5.3.2",
"next-sitemap": "^4.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"storyblok-rich-text-react-renderer": "^2.9.0"
},
"devDependencies": {
"@kickstartds/jsonschema2storyblok": "^1.5.20",
"@kickstartds/style-dictionary": "^4.0.2",
"@netlify/plugin-nextjs": "^5.2.2",
"@types/ffprobe": "^1.1.8",
"@types/ffprobe-static": "^2.0.3",
"@types/node": "20.4.5",
"@types/react": "18.2.17",
"@types/react-dom": "18.2.7",
"dotenv": "^16.4.1",
"esbuild": "^0.19.5",
"eslint": "8.45.0",
"eslint-config-next": "13.4.12",
"form-data": "^4.0.0",
"import-meta-resolve": "~3.0.0",
"json-schema-typed": "~8.0.1",
"jsonpointer": "^5.0.1",
"kickstartds": "^3.0.0",
"local-ssl-proxy": "^2.0.5",
"next": "13.5.6",
"object-traversal": "^1.0.1",
"path-exists-cli": "^2.0.0",
"plop": "^4.0.1",
"promise-throttle": "^1.1.2",
"rimraf": "^5.0.5",
"storyblok": "^3.30.0",
"storyblok-generate-ts": "^2.1.0",
"typescript": "5.1.6"
}
}