-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.43 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
{
"name": "@commutatus/cm-page-builder",
"version": "2.1.1",
"description": "Page builder package like notion",
"main": "lib/page/index.js",
"files": [
"lib"
],
"scripts": {
"start": "node ./server.js",
"build": "npm-run-all -p build:css-prod build:prod",
"build:prod": "webpack --mode production",
"build:css-prod": "node-sass-chokidar src/styles -o lib/styles",
"start-dev-server": "webpack-dev-server --host localhost --mode development --content-base=www --inline --watch --hot --open",
"dev": "npm-run-all -p watch-css start-dev-server",
"local": "npm-run-all -p build-watch-css watch-babel",
"build-babel": "babel src --out-dir lib",
"copy-modules": "cp -r node_modules lib",
"build-assets": "cp -r src/assets lib",
"build:package": "npm-run-all clean build-css build-babel build-assets",
"clean": "rimraf lib",
"build-css": "node-sass-chokidar src/styles -o lib/styles",
"build-watch-css": "node-sass-chokidar src/styles -o lib/styles --watch --recursive",
"watch-css": "node-sass-chokidar src/styles -o src/styles --watch --recursive",
"watch-babel": "babel src --out-dir lib --watch --recursive",
"test": "jest --env=node",
"prepare": "npm-run-all clean build-css build-babel build-assets"
},
"watch": {
"build": "src/",
"start": "node ./dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commutatus/cm-page-builder-next.git"
},
"author": "Commutatus",
"license": "ISC",
"bugs": {
"url": "https://github.com/commutatus/cm-page-builder-next/issues"
},
"homepage": "https://github.com/commutatus/cm-page-builder-next#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cpy-cli": "^2.0.0",
"css-loader": "^2.1.1",
"html-webpack-plugin": "^3.0.6",
"jest": "^22.4.2",
"node-sass-chokidar": "^1.3.4",
"nodemon": "^1.17.1",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.3.0",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"webpack": "^4.1.1",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1",
"webpack-node-externals": "^1.6.0",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"dependencies": {
"activestorage": "^5.2.3",
"classnames": "^2.2.6",
"compression": "^1.7.4",
"emoji-js": "^3.4.1",
"emoji-mart": "^2.11.1",
"express": "^4.17.1",
"highlight.js": "^10.1.1",
"is-accessor-descriptor": "^3.0.1",
"is-data-descriptor": "^2.0.0",
"moment": "^2.24.0",
"node-html-parser": "1.1.18",
"prop-types": "^15.7.2",
"react-circular-progressbar": "^2.0.2",
"react-dropzone": "10.1.9",
"react-helmet": "^5.2.1",
"react-redux": "^7.1.0",
"react-svg-loader": "^3.0.3",
"react-syntax-highlighter": "^12.2.1",
"react-transition-group": "^4.3.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"sanitize-html": "^1.20.1",
"sortablejs": "^1.10.0-rc3",
"style-loader": "^0.23.1",
"uuid": "^3.3.2"
},
"jest": {
"verbose": true,
"globals": {
"window": {}
}
}
}