-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
110 lines (110 loc) · 2.92 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "carbon-ui-builder",
"version": "0.1.0",
"private": true,
"homepage": "https://builder.carbondesignsystem.com",
"dependencies": {
"@carbon/react": "1.41.2",
"@monaco-editor/react": "4.6.0",
"@swc/helpers": "0.5.2",
"axios": "0.27.2",
"buffer": "6.0.3",
"dom-to-image": "2.6.0",
"emotion": "10.0.27",
"handlebars": "4.7.8",
"html-react-parser": "4.2.2",
"jsoncrush": "1.1.8",
"jspdf": "2.5.1",
"jszip": "3.10.1",
"lodash": "4.17.21",
"lz-string": "1.4.4",
"octokit": "3.1.1",
"path": "npm:path-browserify",
"prettier": "2.6.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.47.0",
"react-hotkeys-hook": "3.4.6",
"react-markdown": "8.0.3",
"react-quill": "2.0.0",
"react-resizable": "3.0.4",
"react-router-dom": "6.3.0",
"remark-gfm": "3.0.1",
"sass": "1.55.0",
"unique-names-generator": "4.7.1"
},
"devDependencies": {
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@jscutlery/semver": "4.1.0",
"@nx/eslint": "17.1.2",
"@nx/eslint-plugin": "17.1.2",
"@nx/js": "17.1.2",
"@nx/react": "17.1.2",
"@nx/vite": "17.1.2",
"@nx/workspace": "17.1.2",
"@swc-node/register": "1.6.8",
"@swc/cli": "0.1.63",
"@swc/core": "1.3.96",
"@testing-library/dom": "8.13.0",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "14.0.0",
"@types/dom-to-image": "2.6.4",
"@types/jest": "27.5.1",
"@types/lodash-es": "4.17.6",
"@types/lz-string": "1.3.34",
"@types/mime-types": "2.1.1",
"@types/node": "18.14.2",
"@types/prettier": "2.6.1",
"@types/react": "18.2.33",
"@types/react-dom": "18.2.14",
"@types/react-router-dom": "5.3.3",
"@types/webpack-env": "1.17.0",
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"@vitejs/plugin-react": "4.0.0",
"@vitejs/plugin-react-swc": "3.3.2",
"@vitest/coverage-v8": "0.34.6",
"@vitest/ui": "0.34.6",
"cross-env": "7.0.3",
"cypress": "9.6.1",
"eslint": "8.46.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^8.0.0",
"jest": "28.1.0",
"jest-watch-typeahead": "2.2.2",
"jsdom": "22.1.0",
"msw": "0.39.2",
"nx": "17.1.2",
"ts-jest": "28.0.2",
"typescript": "5.1.3",
"vite": "4.3.9",
"vite-plugin-dts": "2.3.0",
"vite-plugin-rewrite-all": "1.0.1",
"vitest": "0.34.6",
"web-vitals": "3.5.0"
},
"scripts": {
"nx": "nx",
"version": "nx release version",
"start": "nx serve app",
"build": "nx build app",
"lint": "nx run-many --projects=tag:library,tag:application --target=lint",
"lint:fix": "nx run-many --projects=tag:library,tag:application --target=lint --fix",
"prepare": "husky install"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
}
}
}