-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
82 lines (82 loc) · 2.67 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
82
{
"name": "typeform-embed-monorepo",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=12"
},
"scripts": {
"postinstall": "yarn lerna bootstrap",
"clean": "yarn lerna run clean",
"build": "yarn lerna run build",
"lint": "yarn lerna run lint && yarn docs-prettier-check",
"test": "yarn lerna run test",
"test:coverage": "yarn lerna run test:coverage",
"test:functional": "yarn lerna run test:functional",
"test:visual": "yarn lerna run test:visual",
"release": "sh ./scripts/release.sh",
"release:preview": "yarn lerna run release:preview",
"docs-prettier-check": "prettier --check ./docs --ignore-path .eslintignore",
"docs-prettier": "prettier --write ./docs --ignore-path .eslintignore"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.12.10",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.10",
"@semantic-release/release-notes-generator": "^9.0.1",
"@testing-library/dom": "^10.3.2",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@typeform/eslint-config": "^6.0.3",
"@types/cypress": "^1.1.3",
"@types/jest": "^26.0.20",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@visual-regression-tracker/agent-cypress": "^5.6.0",
"babel-loader": "^8.2.2",
"commitlint": "^11.0.0",
"concurrently": "^5.3.0",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.0.2",
"cypress": "10.3.0",
"eslint": "^7.32.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"html-webpack-plugin": "^5.1.0",
"http-server": "^0.12.3",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-transform-css": "^2.1.0",
"lerna": "^3.22.1",
"mini-css-extract-plugin": "^1.3.7",
"next": "^15.0.3",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "^4.0.2",
"sass": "^1.55.0",
"sass-loader": "^13.0.2",
"semantic-release": "^17.3.8",
"semantic-release-monorepo": "^7.0.4",
"start-server-and-test": "^1.12.5",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.0",
"ts-loader": "^8.0.15",
"typescript": "^4.2.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"prettier": "@typeform/eslint-config/prettier"
}