This repository has been archived by the owner on Jul 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.51 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "tmdb-ui-cyclejs",
"version": "1.0.0",
"description": "A simple TMDb UI",
"private": true,
"main": "webpack.config.js",
"scripts": {
"test": "webpack --entry ./test/test.js --output test/test.compiled.js --display none && mocha test/test.compiled.js",
"start": "webpack-dev-server --mode=development --open",
"build": "webpack --mode=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sarimarton/tmdb-ui-cyclejs.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sarimarton/tmdb-ui-cyclejs/issues"
},
"homepage": "https://github.com/sarimarton/tmdb-ui-cyclejs#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@types/history": "^4.7.2",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.4",
"css-loader": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"mocha": "^5.2.0",
"style-loader": "^0.23.1",
"webpack": "^4.22.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"dependencies": {
"@cycle/dom": "^22.0.0",
"@cycle/history": "^7.0.0",
"@cycle/http": "^15.0.0",
"@cycle/run": "^5.1.0",
"@cycle/time": "^0.16.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"cyclic-router": "^5.1.7",
"object.fromentries": "^2.0.0",
"snabbdom-pragma": "^2.7.0",
"switch-path": "^1.2.0",
"uikit": "^3.0.0-rc.19",
"xstream": "^11.7.0"
}
}