-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.65 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.65 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "shopmost",
"version": "1.0.0",
"description": "The React Ecommerce platform. Built with React and Postgres. Open-source and free. Fast and customizable.",
"files": [
"bin",
"src"
],
"scripts": {
"prepublishOnly": "node prepublish.js",
"prepack": "node prepublish.js",
"install": "node ./src/shopmost install",
"dev": "nodemon ./src/shopmost dev",
"build": "node ./src/shopmost build",
"start": "export NODE_ENV=development && nodemon ./src/shopmost start",
"test": "jest"
},
"author": "Kyle Kumar",
"repository": {
"type": "git",
"url": "git+https://github.com/kkumarcodes/Shopmost.git"
},
"keywords": [
"ecommerce",
"shopping cart",
"cart"
],
"bugs": {
"url": "https://github.com/kkumarcodes/Shopmost/issues"
},
"_moduleAliases": {
"@root": ".",
"@lib": "src/lib",
"@bin": "src/bin"
},
"homepage": "http://shopmost.io/",
"dependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@ckeditor/ckeditor5-build-classic": "^36.0.1",
"@ckeditor/ckeditor5-react": "^5.1.0",
"@grapesjs/react": "^1.0.0",
"@graphql-tools/load-files": "^7.0.0",
"@graphql-tools/merge": "^9.0.0",
"@graphql-tools/schema": "^10.0.0",
"@hapi/topo": "^6.0.2",
"@heroicons/react": "^1.0.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@shopify/draggable": "^1.1.1",
"@stripe/react-stripe-js": "^2.3.0",
"@stripe/stripe-js": "^2.1.6",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"autoprefixer": "^10.4.13",
"axios": "^1.6.0",
"babel-loader": "^8.2.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"boxen": "^5.1.2",
"chokidar": "^3.5.3",
"clean-css": "^5.3.2",
"config": "^3.3.9",
"cookie-parser": "^1.4.6",
"cross-spawn": "^7.0.3",
"css-loader": "^6.8.1",
"csv-parser": "^3.0.0",
"dayjs": "^1.10.6",
"debug": "^4.3.2",
"dependency-tree": "^8.1.2",
"enquirer": "^2.3.6",
"express": "^4.18.2",
"express-session": "^1.17.3",
"flatpickr": "^4.6.9",
"grapesjs": "^0.21.7",
"graphql": "^16.8.1",
"html-entities": "^2.3.3",
"html-webpack-harddisk-plugin": "^2.0.0",
"html-webpack-plugin": "^5.5.3",
"immer": "^9.0.3",
"is-object": "^1.0.2",
"json5": "^2.2.1",
"jsonwebtoken": "^9.0.2",
"kleur": "3.0.3",
"lodash": "^4.17.21",
"luxon": "^3.4.3",
"mini-css-extract-plugin": "^2.6.1",
"module-alias": "^2.2.3",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.0.1",
"npm": "^9.8.1",
"ora": "^5.4.1",
"pg": "^8.10.0",
"postcss": "^8.4.31",
"promise.allsettled": "^1.0.4",
"prop-types": "^15.8.1",
"pubsub-js": "^1.9.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-fast-compare": "^3.2.2",
"react-refresh": "^0.14.0",
"react-select": "^5.7.5",
"react-toastify": "^9.1.3",
"recharts": "^2.8.0",
"sass": "^1.68.0",
"sass-loader": "^13.3.2",
"semver": "^7.3.5",
"serve-static": "^1.15.0",
"session-file-store": "^1.5.0",
"sharp": "^0.32.6",
"stripe": "^13.7.0",
"style-loader": "^3.3.3",
"tailwindcss": "3.3.3",
"terser-webpack-plugin": "^5.3.7",
"touch": "^3.1.0",
"uniqid": "^5.3.0",
"urql": "^3.0.3",
"uuid": "^9.0.1",
"webpack": "^5.72.1",
"webpack-dev-middleware": "^6.1.1",
"webpack-hot-middleware": "^2.25.4",
"webpackbar": "^5.0.2",
"winston": "^3.10.0",
"yargs": "^17.7.2",
"zero-decimal-currencies": "^1.2.0"
}
}