-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.64 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "cezerin",
"version": "0.33.0",
"description": "Cezerin is React and Node.js based eCommerce platform. https://cezerin.com",
"keywords": [
"cezerin",
"ecommerce",
"shopping cart",
"shop",
"cms"
],
"homepage": "https://cezerin.com",
"bugs": "https://github.com/cezerin/cezerin/issues",
"license": "MIT",
"author": {
"name": "Restmount <[email protected]>",
"url": "https://github.com/restmount"
},
"contributors": [
{
"name": "Restmount <[email protected]>",
"url": "https://github.com/restmount"
},
{
"name": "Sergey Onufrienko <[email protected]>",
"url": "https://github.com/sonufrienko"
}
],
"main": "src/api/server/index.js",
"repository": {
"type": "git",
"url": "https://github.com/cezerin/cezerin"
},
"scripts": {
"compile": "babel src/store -d dist/store --quiet",
"compile:watch": "babel src/store -d dist/store --watch & babel theme/src -d theme/dist --watch",
"webpack:admin": "webpack --config webpack.config.admin.js --mode production",
"webpack:store": "webpack --config webpack.config.store.js --mode production",
"webpack:admin:watch": "webpack --config webpack.config.admin.js --mode development --watch",
"webpack:store:watch": "webpack --config webpack.config.store.js --mode development --watch",
"theme:install": "./scripts/theme-install.sh",
"theme:export": "./scripts/theme-export.sh",
"theme:build": "babel theme/src -d theme/dist --quiet && npm run webpack:store",
"build": "npm run compile && npm run theme:build && npm run webpack:admin",
"build:watch": "npm run compile:watch & npm run webpack:store:watch & npm run webpack:admin:watch",
"start-api": "node src/api/server/index.js",
"start-store": "node dist/store/server/index.js",
"start": "npm run start-api & npm run start-store"
},
"dependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"body-parser": "^1.18.2",
"cezerin-client": "^0.31.1",
"chart.js": "^2.7.2",
"cookie-parser": "^1.4.3",
"css-loader": "^0.28.11",
"express": "^4.16.3",
"express-jwt": "^5.3.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"formidable": "^1.2.1",
"fs-extra": "^5.0.0",
"handlebars": "^4.0.11",
"helmet": "^3.12.0",
"html-webpack-plugin": "^3.0.7",
"jsonwebtoken": "^8.2.0",
"lodash": "^4.17.5",
"lru-cache": "^4.1.1",
"material-ui": "^0.20.0",
"moment": "^2.21.0",
"mongodb": "^3.0.4",
"node-fetch": "^2.1.1",
"node-sass": "^4.8.3",
"nodemailer": "^4.6.3",
"nodemailer-smtp-transport": "^2.7.4",
"query-string": "^5.1.1",
"react": "^16.2.0",
"react-chartjs-2": "^2.7.0",
"react-dom": "^16.2.0",
"react-dropzone": "^4.2.9",
"react-helmet": "^5.2.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-scroll": "^1.7.7",
"react-sortable-hoc": "^0.6.8",
"react-tagsinput": "^3.19.0",
"redux": "^3.7.2",
"redux-form": "^7.3.0",
"redux-form-material-ui": "^4.3.3",
"redux-thunk": "^2.2.0",
"request": "^2.85.0",
"response-time": "^2.3.2",
"sass-loader": "^6.0.7",
"sitemap": "^1.13.0",
"slug": "^0.9.1",
"theme": "file:theme",
"ua-parser-js": "^0.7.17",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.11",
"winston": "^2.4.1",
"ws": "^5.1.0"
},
"engines": {
"node": "^8.0.0",
"npm": "^5.0.0"
}
}