-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.66 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.66 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
{
"name": "munger_builder",
"version": "0.5.0",
"description": "A tool for generating python scripts to do data munging, using a javascript GUI",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/webpack --config webpack_prod.config.js",
"predeploy": "git co master; git br -D heroku-deploy; git co -b heroku-deploy; npm run build; git commit -am \"heroku-deploy\"; git co master",
"deploy": "git push heroku heroku-deploy:master --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cscanlin/munger-builder.git"
},
"author": "cscanlin",
"license": "MIT",
"bugs": {
"url": "https://github.com/cscanlin/munger-builder/issues"
},
"homepage": "https://github.com/cscanlin/munger-builder#readme",
"dependencies": {
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"immutable": "^3.8.1",
"isomorphic-fetch": "^2.2.1",
"js-cookie": "^2.1.2",
"json-loader": "^0.5.4",
"react": "^15.3.0",
"react-addons-update": "^15.3.0",
"react-dnd": "^2.1.4",
"react-dnd-html5-backend": "^2.1.2",
"react-dom": "^15.3.0",
"titleize": "^1.0.0",
"webpack": "^1.13.1",
"webpack-bundle-tracker": "0.0.93"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0"
}
}