forked from IBM/carbon-ui-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.47 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
{
"name": "carbon-ui-builder",
"version": "0.1.0",
"private": true,
"homepage": "https://builder.carbondesignsystem.com",
"dependencies": {
"@carbon/colors": "10.7.2",
"@carbon/icons-react": "10.49.0",
"@monaco-editor/react": "^4.4.6",
"axios": "0.27.2",
"buffer": "6.0.3",
"carbon-components": "10.50.0",
"carbon-components-react": "7.57.1",
"carbon-icons": "7.0.7",
"dom-to-image": "2.6.0",
"emotion": "10.0.27",
"jsoncrush": "^1.1.8",
"jspdf": "2.5.1",
"lodash": "4.17.21",
"lz-string": "1.4.4",
"octokit": "1.8.0",
"path": "npm:path-browserify",
"prettier": "2.6.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "7.31.1",
"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",
"react-scripts": "5.0.1",
"remark-gfm": "3.0.1",
"sass": "1.51.0",
"typescript": "4.6.4",
"unique-names-generator": "4.7.1"
},
"devDependencies": {
"@testing-library/dom": "8.13.0",
"@testing-library/jest-dom": "5.16.4",
"@types/dom-to-image": "2.6.4",
"@types/jest": "27.5.1",
"@types/jspdf": "2.0.0",
"@types/lodash-es": "4.17.6",
"@types/lz-string": "1.3.34",
"@types/mime-types": "2.1.1",
"@types/node": "17.0.35",
"@types/prettier": "2.6.1",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.11",
"@types/react-router-dom": "5.3.3",
"@types/webpack-env": "1.17.0",
"@typescript-eslint/eslint-plugin": "5.25.0",
"@typescript-eslint/parser": "5.25.0",
"cross-env": "7.0.3",
"cypress": "9.6.1",
"eslint": "8.15.0",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "4.5.0",
"jest": "28.1.0",
"jest-environment-jsdom-sixteen": "2.0.0",
"msw": "0.39.2",
"ts-jest": "28.0.2"
},
"scripts": {
"start": "cross-env GENERATE_SOURCEMAP=false react-scripts start",
"build": "react-scripts build",
"lint": "eslint --ext .js,.ts,.jsx,.tsx 'src/**'",
"lint:fix": "eslint --ext .js,.ts,.jsx,.tsx 'src/**' --fix",
"test": "react-scripts test --env=jest-environment-jsdom-sixteen --testPathIgnorePatterns=.d.ts",
"cypress": "cypress open",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
}
}
}