1
0
mirror of synced 2025-11-08 04:48:04 +00:00
Files
typescript-starter/examples/browser/package.json
Jason Dreyzehner 45d7dfad62 docs(examples): refactor examples to be more familiar to most users
use npm to install the library and run each example, remove yarn.lock files
2017-02-17 02:30:16 -05:00

22 lines
511 B
JSON

{
"name": "typescript-starter-example-browser",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "http-server -c-1 ./build/ -o",
"build": "rollup -c && cpy src/index.html build/"
},
"devDependencies": {
"cpy-cli": "^1.0.1",
"http-server": "^0.9.0",
"rollup": "^0.41.4",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-typescript": "^0.8.1",
"typescript": "^2.2.0"
},
"dependencies": {
"typescript-starter": "^1.2.1"
},
"private": true
}