-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"name": "cortex-plugins-core",
"version": "2.1.0",
"main": "node_package/lib/index.js",
"homepage": "https://github.com/cortex-cms/cortex-plugins-core",
"repository": {
"type": "git",
"url": "https://github.com/cortex-cms/cortex-plugins-core.git"
},
"keywords": ["cortex", "cms", "plugins", "core"],
"author": "[email protected]",
"license": "Apache-2.0",
"dependencies": {
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"underscore": "~> 1.8.3",
"moment": "~> 2.19.3",
"bootstrap-sass": "~> 3.3.7",
"jquery-ui-timepicker-addon": "~> 1.6.3",
"clipboard": "~> 1.7.1",
"material-ui": "next",
"axios": "^0.16.2"
},
"devDependencies": {
"@rails/webpacker": "3.0.2",
"babel-preset-react": "^6.24.1",
"babel-cli": "^6.26.0",
"coffeescript": "1.12.7",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"files": [
"node_package/lib"
],
"scripts": {
"clean": "rm -rf node_package/lib",
"prepublish": "yarn run build",
"babel": "babel --out-dir node_package/lib node_package/src",
"build": "yarn run clean && yarn run babel",
"build-watch": "babel --watch --out-dir node_package/lib node_package/src",
"prerelease": "yarn run clean && yarn run build"
}
}