-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
94 lines (94 loc) · 3.01 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": "ordercloud-react-admin",
"version": "1.0.0-alpha.2",
"private": true,
"author": "Sitecore",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start",
"lint": "next lint",
"export": "next export",
"lint:fix": "eslint src --fix && npm run format",
"type-check": "tsc --noEmit",
"format": "prettier --write src",
"up": "upgrade-interactive",
"up-latest": "npm run up --latest",
"release": "cross-env HUSKY=0 standard-version",
"push-release": "git push --follow-tags origin main",
"pre-commit": "npm run lint && npm run type-check",
"seed-playshop": "seeding seed marketplace-configurations/playshop-marketplace.yml",
"seed-minimal": "seeding seed marketplace-configurations/minimal-marketplace.yml",
"prepare": "husky install",
"test": "jest"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/next-js": "^2.2.0",
"@ctrl/tinycolor": "^4.0.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.3.1",
"@minoru/react-dnd-treeview": "^3.4.4",
"@react-querybuilder/chakra": "^6.5.1",
"@react-querybuilder/dnd": "^5.4.0",
"@types/react-dom": "^18.2.18",
"apexcharts": "^3.42.0",
"axios": "^1.5.1",
"chakra-react-select": "^4.7.2",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"framer-motion": "^6.3.3",
"lodash": "^4.17.21",
"next": "^14.0.4",
"next-seo": "^5.4.0",
"openapi-types": "^12.1.3",
"ordercloud-javascript-sdk": "^5.1.0",
"overlayscrollbars": "^2.3.0",
"overlayscrollbars-react": "^0.5.2",
"p-limit": "^5.0.0",
"react": "^18.2.0",
"react-apexcharts": "^1.4.0",
"react-datepicker": "^4.8.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.4",
"react-icons": "^4.4.0",
"react-querybuilder": "^6.5.1",
"react-table": "^7.8.0",
"tinycolor2": "^1.6.0",
"universal-cookie": "^4.0.4",
"uuid": "^9.0.0",
"yup": "^1.1.0"
},
"devDependencies": {
"@ordercloud/seeding": "^1.1.0",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/date-fns": "^2.6.0",
"@types/jest": "^29.5.5",
"@types/node": "^20.7.2",
"@types/react": "^18.2.45",
"@types/react-datepicker": "^4.15.1",
"@types/react-sortable-tree": "^0.3.18",
"@types/react-table": "^7.7.16",
"cross-env": "^7.0.3",
"eslint": "^8.50.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-config-sznm": "^1.0.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"next-sitemap": "^3.1.7",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"typescript": "^5"
}
}