-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
88 lines (88 loc) · 2.45 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
{
"name": "responsive-viewer",
"version": "1.0.0",
"private": true,
"dependencies": {
"@dnd-kit/core": "^3.1.1",
"@dnd-kit/sortable": "^4.0.0",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@hookform/resolvers": "^2.8.8",
"@mui/icons-material": "^5.4.1",
"@mui/material": "^5.4.1",
"@reduxjs/toolkit": "^1.7.2",
"array-move": "^2.1.0",
"blob-util": "^2.0.2",
"file-saver": "^2.0.5",
"husky": "^3.1.0",
"jszip": "^3.7.1",
"konva": "^8.3.2",
"lodash": "^4.17.21",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"react": "^17.0.2",
"react-color": "^2.19.3",
"react-custom-scrollbars-2": "^4.4.0",
"react-dom": "^17.0.2",
"react-frame-component": "^5.2.1",
"react-hook-form": "^7.26.1",
"react-konva": "^17.0.2-5",
"react-redux": "^7.2.6",
"react-scripts": "^5.0.0",
"redux": "^4.1.2",
"redux-saga": "^1.1.3",
"rewire": "^6.0.0",
"scroll-into-view": "^1.9.7",
"source-map-explorer": "^2.5.2",
"use-image": "^1.0.8",
"uuid": "^3.3.3",
"validator": "^13.7.0",
"yup": "^0.32.11"
},
"scripts": {
"start:local": "REACT_APP_PLATFORM=LOCAL react-scripts start",
"start": "REACT_APP_PLATFORM=CHROME node ./scripts/start.js",
"build": "REACT_APP_PLATFORM=CHROME node ./scripts/build.js",
"build:local": "REACT_APP_PLATFORM=LOCAL node ./scripts/build.js",
"build:manifest": "cp ./public/manifest.json ./build/manifest.json",
"test": "react-scripts test",
"eject": "react-scripts eject",
"pretty": "prettier --check 'src/**/*.ts' --write",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/chrome": "^0.0.178",
"@types/file-saver": "^2.0.5",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.16",
"@types/react": "^17.0.39",
"@types/react-color": "^3.0.6",
"@types/react-dom": "^17.0.11",
"@types/scroll-into-view": "^1.16.0",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.7.1",
"cross-env": "^6.0.3",
"typescript": "^4.5.5",
"webpack-cli": "^4.9.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}