Skip to content

Commit c5fc76c

Browse files
first commit
0 parents  commit c5fc76c

14 files changed

+13837
-0
lines changed

.eslintrc.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module.exports = {
2+
extends: ['@frontify/eslint-config-react'],
3+
settings: {
4+
react: {
5+
version: 'detect',
6+
},
7+
},
8+
};

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules
2+
dist
3+
.frontify
4+
.idea
5+
.vscode

.prettierrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"printWidth": 120,
3+
"tabWidth": 4,
4+
"singleQuote": true
5+
}

manifest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"appId": "<Your app ID>"
3+
}

package-lock.json

Lines changed: 12846 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "typeform_block_tutorial",
3+
"version": "1.0.0",
4+
"main": "src/index.ts",
5+
"scripts": {
6+
"serve": "frontify-cli serve --entryPath src/index.ts",
7+
"deploy": "frontify-cli deploy --entryPath src/index.ts",
8+
"lint": "eslint .",
9+
"lint:fix": "eslint . --fix",
10+
"typecheck": "tsc --noEmit"
11+
},
12+
"dependencies": {
13+
"@frontify/app-bridge": "3.0.0-beta.49",
14+
"@frontify/fondue": "v12.0.0-beta.121",
15+
"react": "^17.0.2",
16+
"react-dom": "^17.0.2",
17+
"@typeform/embed-react": "2.18.0"
18+
},
19+
"devDependencies": {
20+
"@frontify/eslint-config-react": "0.15.6",
21+
"@frontify/frontify-cli": "5.3.9",
22+
"@frontify/guideline-blocks-settings": "0.25.12",
23+
"@types/react": "17.0.47",
24+
"autoprefixer": "10.4.13",
25+
"eslint": "8.35.0",
26+
"postcss": "8.4.21",
27+
"postcss-modules": "6.0.0",
28+
"prettier": "2.8.4",
29+
"typescript": "4.9.5"
30+
}
31+
}

0 commit comments

Comments
 (0)