fe-boilerplate/package.json

21 lines
472 B
JSON
Raw Normal View History

2015-09-15 08:10:14 +02:00
{
"name": "react-typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"react": "^0.13.3"
},
"devDependencies": {
"browserify": "^11.1.0",
2015-09-15 09:44:19 +02:00
"mkdirp": "^0.5.1",
2015-09-15 08:10:14 +02:00
"typescript": "^1.6.0-beta"
},
"scripts": {
2015-09-15 09:44:19 +02:00
"build": "mkdirp public/js/app && tsc && browserify ./temp/app.js -o public/js/app/bundle.js",
2015-09-15 08:10:14 +02:00
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}