mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-08 02:36:27 -05:00
23 lines
564 B
JSON
23 lines
564 B
JSON
{
|
|
"name": "noms-pitchmap-ui",
|
|
"dependencies": {
|
|
"react": "^0.14.1",
|
|
"react-dom": "^0.14.1"
|
|
},
|
|
"devDependencies": {
|
|
"babel": "^5.6.23",
|
|
"babel-eslint": "^4.1.3",
|
|
"babelify": "^6.1.3",
|
|
"browserify": "^12.0.1",
|
|
"eslint": "^1.7.3",
|
|
"eslint-plugin-react": "^3.6.3",
|
|
"flow-bin": "^0.18.1",
|
|
"watchify": "^3.6"
|
|
},
|
|
"scripts": {
|
|
"start": "watchify -o out.js -t babelify -v -d main.js",
|
|
"build": "NODE_ENV=production browserify main.js -t babelify > out.js",
|
|
"test": "rm -f out.js && eslint *.js && flow"
|
|
}
|
|
}
|