forked from amplience/dc-extension-ecomm-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.59 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.59 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
{
"name": "@amplience/dc-extension-ecomm-toolkit",
"version": "1.3.0",
"private": true,
"scripts": {
"dev": "next dev --port 3000",
"build": "next build",
"start": "next start",
"lint": "next lint",
"ver": "vercel dev --listen 3002",
"version:patch": "standard-version --release-as patch",
"version:minor": "standard-version --release-as minor",
"version:major": "standard-version --release-as major",
"prepare-patch-release": "run-s build version:patch",
"prepare-minor-release": "run-s build version:minor",
"prepare-major-release": "run-s build version:major"
},
"dependencies": {
"@amplience/dc-integration-middleware": "git+https://github.com/amplience/dc-integration-middleware.git#v1.0.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.6.0",
"@mui/lab": "^5.0.0-alpha.76",
"@mui/material": "^5.6.0",
"dc-extensions-sdk": "^2.1.0",
"immutability-helper": "^3.1.1",
"lodash": "^4.17.21",
"next": "^12.2.5",
"npm-run-all": "^4.1.5",
"react": "18.0.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "18.0.0",
"standard-version": "^9.5.0"
},
"devDependencies": {
"@types/lodash": "^4.14.181",
"@types/node": "^17.0.23",
"@types/react": "18.0.0",
"eslint": "8.12.0",
"eslint-config-next": "12.1.4",
"typescript": "5.0.2",
"vercel": "^24.0.1"
}
}