-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.04 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.04 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
{
"name": "react-blockly-component",
"version": "1.1.1",
"description": "A React wrapper for the Blockly visual programming editor",
"main": "dist-modules",
"scripts": {
"build": "webpack --config webpack.config.js",
"start": "webpack-dev-server --config webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "babel ./src --out-dir ./dist-modules",
"prepublish-watch": "babel ./src --watch --out-dir ./dist-modules"
},
"author": "Nat Budin <nbudin@patientslikeme.com>",
"license": "MIT",
"dependencies": {
"immutable": "^3.7.6",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-immutable-proptypes": "^1.7.0",
"react-immutable-render-mixin": "^0.9.5"
},
"devDependencies": {
"babel-core": "^6.3.26",
"babel-loader": "^6.2.0",
"babel-plugin-transform-object-assign": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"expose-loader": "^0.7.1",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
}
}