-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.87 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
{
"name": "@shipengine/connect-local-dev-ui",
"version": "2.1.0",
"description": "The ShipEngine Integration Platform local development UI",
"author": {
"name": "ShipEngine",
"email": "[email protected]",
"url": "https://connect.shipengine.com"
},
"license": "Apache-2.0",
"homepage": "https://connect.shipengine.com",
"repository": {
"type": "git",
"url": "git+https://github.com/ShipEngine/connect-local-dev-ui.git"
},
"bugs": {
"url": "https://github.com/ShipEngine/connect-local-dev-ui/issues"
},
"main": "build/index.js",
"scripts": {
"build": "react-scripts build && tsc -p ./scripts/post-build/tsconfig.json",
"bundlesize": "bundlesize --config ./bundlesize.config.js",
"bump": "bump --tag --push --all",
"clean": "shx rm -rf coverage build",
"format": "prettier --write src/**/*.ts{,x}",
"lint": "eslint src/**/*.ts{,x}",
"release": "npm run upgrade && npm run clean && npm run lint && npm run build && CI=true react-scripts test && npm run bump",
"prestart": "react-env --env /path/to/.env",
"start": "PORT=4000 react-scripts start",
"test": "react-scripts test",
"upgrade": "npm-check -u && npm audit fix"
},
"devDependencies": {
"@ant-design/icons": "^4.2.2",
"@beam-australia/react-env": "^2.1.2",
"@jsdevtools/version-bump-prompt": "^6.1.0",
"@rjsf/antd": "^2.4.0",
"@rjsf/core": "^2.4.0",
"@shipengine/connect-sdk": "^12.6.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.8",
"@types/eslint": "^7.2.6",
"@types/jest": "^26.0.19",
"@types/lodash": "^4.14.165",
"@types/node": "^14.11.8",
"@types/react": "^16.9.52",
"@types/react-dom": "^16.9.0",
"@types/react-jsonschema-form": "^1.7.4",
"@types/react-router-dom": "^5.1.6",
"@types/react-syntax-highlighter": "^11.0.5",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"antd": "^4.7.0",
"axios": "^0.21.1",
"bundlesize": "^0.18.1",
"dayjs": "^1.9.7",
"eslint-plugin-jest": "^24.1.3",
"json-schema": "^0.2.5",
"lodash": "^4.17.20",
"node-sass": "^4.14.1",
"npm-check": "^5.9.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-json-pretty": "^2.2.0",
"react-query": "^2.23.1",
"react-query-devtools": "^2.6.3",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.3",
"shx": "^0.3.3",
"typescript": "^4.0.3",
"uuid": "^8.3.2"
},
"engines": {
"node": ">=10"
},
"engineStrict": true,
"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"
]
}
}