-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 4 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 4 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
{
"name": "chisel-cms",
"version": "0.15.1",
"description": "API-first headless CMS running on Parse Server",
"author": "Beach.io (beach.io)",
"license": "BSD-3-Clause",
"homepage": "http://chiselcms.com",
"repository": {
"type": "git",
"url": "https://github.com/beachio/chisel"
},
"bugs": {
"url": "https://github.com/beachio/chisel/issues"
},
"browser": "dist/main.js",
"files": [
"bin",
"build",
"dist",
"src",
"README.md"
],
"scripts": {
"start": "node build/server.js",
"bundle": "rimraf dist && webpack --config build/webpack.dev-build.config.js",
"build": "node build/build.js",
"build-electron": "ELECTRON=true node build/build.js",
"localrun": "node build/local.run.js",
"start-electron-server-selector": "node electron/server-selector/server.js",
"build-electron-server-selector": "node electron/server-selector/build.js",
"start-electron-only": "electron electron/electron.js",
"electron-pack": "electron-builder -c electron/electron-builder.js --mac --win",
"electron-pack-and-upload": "electron-builder -c electron/electron-builder.js --mac --win -p always"
},
"bin": {
"chisel-cms": "./bin/chisel-cms"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-decorators": "^7.16.4",
"@babel/plugin-proposal-export-namespace-from": "^7.16.0",
"@babel/plugin-proposal-numeric-separator": "^7.16.0",
"@babel/plugin-proposal-throw-expressions": "^7.16.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-react-jsx-source": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"autoprefixer": "^10.4.0",
"babel-loader": "^8.2.3",
"commander": "^9.4.0",
"css-loader": "^6.5.1",
"cssnano": "^5.0.12",
"dotenv": "^10.0.0",
"electron": "^19.0.10",
"electron-builder": "^22.14.5",
"electron-notarize": "^1.1.1",
"eslint": "^8.3.0",
"eslint-plugin-react": "^7.27.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.4.5",
"ora": "^5.4.1",
"postcss": "^8.4.4",
"postcss-advanced-variables": "^3.0.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^7.0.1",
"postcss-nested": "^5.0.6",
"pug": "^3.0.2",
"pug-loader": "github:Nes-si/pug-loader",
"react-hot-loader": "^4.13.0",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"style-loader": "^3.3.1",
"sugarss": "^4.0.1",
"svg-inline-loader": "^0.8.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@babel/runtime": "^7.16.3",
"@electron/remote": "^2.0.1",
"@stripe/react-stripe-js": "^1.10.0",
"@stripe/stripe-js": "^1.35.0",
"classnames": "^2.3.1",
"core-js": "^3.19.2",
"electron-is-dev": "^2.0.0",
"electron-log": "^4.4.1",
"electron-updater": "^4.6.1",
"express": "^4.17.1",
"markdown-it": "^13.0.1",
"normalize.css": "^8.0.1",
"parse": "^3.4.0",
"react": "^17.0.0",
"react-css-modules": "^4.7.11",
"react-dom": "^17.0.0",
"react-flatpickr": "^3.10.13",
"react-flip-move": "^3.0.4",
"react-gravatar": "^2.6.3",
"react-helmet-async": "^1.2.0",
"react-markdown-editor-lite": "^1.3.1",
"react-medium-editor": "github:Nes-si/react-medium-editor",
"react-redux": "^8.0.2",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"react-sortable-hoc": "^2.0.0",
"react-stars": "^2.2.5",
"react-transition-group": "^4.4.2",
"redux": "^4.1.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.1",
"regenerator-runtime": "^0.13.9",
"svg-inline-react": "^3.2.1",
"webpack-hot-middleware": "^2.25.1",
"whatwg-fetch": "^3.6.2"
},
"engines": {
"node": ">=14.16.0"
}
}