-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.31 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.31 KB
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
{
"name": "@impler/widget",
"version": "1.9.0",
"author": "implerhq",
"license": "MIT",
"private": true,
"scripts": {
"start": "cross-env PORT=3500 BROWSER=none craco start",
"start:dev": "cross-env PORT=3500 BROWSER=none craco start",
"prebuild": "rimraf build",
"build": "craco build",
"precommit": "lint-staged",
"eject": "craco eject",
"lint": "eslint src",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"envsetup": "chmod +x ./env.sh && ./env.sh && mv env-config.js ./public/env-config.js",
"envsetup:docker": "chmod +x ./env.sh && ./env.sh && mv ./env-config.js ./build/env-config.js",
"start:static:build": "pnpm envsetup:docker && http-server build -p 3500 --proxy http://localhost:3500?",
"start:docker": "pnpm build && pnpm start:static:build"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint"
]
},
"dependencies": {
"@craco/craco": "^6.4.5",
"@emotion/react": "^11.10.5",
"@handsontable/react": "^14.1.0",
"@impler/client": "workspace:^",
"@impler/shared": "workspace:^",
"@mantine/colors-generator": "^7.17.2",
"@mantine/core": "6.0.21",
"@mantine/dates": "6.0.21",
"@mantine/dropzone": "6.0.21",
"@mantine/hooks": "6.0.21",
"@mantine/notifications": "6.0.21",
"@sentry/react": "^7.112.1",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/react": "^6.5.13",
"@tanstack/react-query": "^4.14.5",
"axios": "1.8.2",
"cooltipz-css": "^2.3.0",
"cross-env": "^7.0.3",
"file-saver": "^2.0.5",
"handsontable": "^14.1.0",
"http-server": "^14.1.1",
"jszip": "^3.10.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.39.1",
"react-router-dom": "^6.4.2",
"react-scripts": "5.0.1",
"rimraf": "^3.0.2",
"socket.io": "^4.7.2",
"socket.io-client": "^4.8.1",
"tippy.js": "^6.3.7",
"web-vitals": "^3.0.4",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@babel/preset-typescript": "^7.24.7",
"@types/file-saver": "^2.0.5",
"@types/react": "^18.2.0",
"@types/react-datepicker": "^4.19.1",
"@types/react-dom": "^18.2.0",
"ts-loader": "^9.4.1",
"typescript": "^4.8.3"
}
}