-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 964 Bytes
/
package.json
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
{
"name": "rsjx-stream-examples",
"version": "1.0.0",
"description": "A series of examples using RXJS.",
"author": "Carl Willimott <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"extract-text-webpack-plugin": "^1.0.1",
"jasmine": "^2.4.1",
"rxjs": "^5.0.0-beta.9",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
"test": "babel-node --presets es2015 run.js",
"build-01": "webpack-dev-server ./src/01-simple-debt-calculator/index.js --content-base src/01-simple-debt-calculator",
"build-02": "webpack-dev-server ./src/02-basic-autocomplete/index.js --content-base src/02-basic-autocomplete",
"build-03": "webpack-dev-server ./src/03-sorting-and-filtering/index.js --content-base src/03-sorting-and-filtering"
},
"dependencies": {
"babel-runtime": "^6.9.2"
}
}