-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 915 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
27
28
29
30
31
32
33
34
35
36
37
{
"name": "dynamically_loaded_cyclejs_components",
"version": "1.0.0",
"description": "Webpack + CycleJS + MostJS",
"main": "src/app.js",
"scripts": {
"rebuild-deps": "rimraf node_modules && npm i",
"clean-dist": "rimraf dist",
"build": "npm run clean-dist && webpack"
},
"keywords": [
"CycleJS",
"MostJS",
"SystemJS",
"UMD"
],
"author": "Alberto Scorrano",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.13.2",
"eslint": "^3.2.2",
"eslint-config-cycle": "^3.2.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-cycle": "^1.0.2",
"html-webpack-plugin": "^2.22.0",
"webpack": "^2.1.0-beta.20"
},
"dependencies": {
"@cycle/dom": "^12.0.3",
"@cycle/isolate": "^1.4.0",
"@cycle/most-run": "^4.0.0",
"most": "^1.0.0",
"xstream": "^5.3.2"
}
}