-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
66 lines (66 loc) · 1.89 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "cycle-webpack-boilerplate",
"version": "0.2.0",
"description": "Cycle webpack babel boilerplate",
"main": "index.js",
"scripts": {
"start": "npm run server:dev",
"server:dev": "./node_modules/.bin/webpack-dev-server --hot --config webpack.config.js --inline --progress --profile --colors --watch --display-error-details --display-cached --content-base src/",
"test-server": "./node_modules/.bin/webpack --config webpack.test.config.js --watch",
"build": "webpack --progress --colors --config webpack.production.config.js",
"clean": "rm -rf build/",
"test": "testem"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cmdv/cycle-webpack-boilerplate.git"
},
"keywords": [
"cycle",
"webpack",
"tape",
"testem",
"testing",
"bdd",
"babel",
"tdd",
"boilerplate",
"cyclejs"
],
"author": "Vincent Orr",
"license": "MIT",
"bugs": {
"url": "https://github.com/Cmdv/cycle-webpack-boilerplate/issues"
},
"homepage": "https://github.com/Cmdv/cycle-webpack-boilerplate#readme",
"dependencies": {
"@cycle/core": "^6.0.3",
"@cycle/dom": "^9.4.0",
"@cycle/history": "^2.0.2",
"@cycle/isolate": "^1.2.0",
"css-loader": "^0.23.1",
"history": "^2.1.0",
"ramda": "^0.21.0",
"rx": "^4.1.0",
"rx-combine-latest-obj": "^1.0.2",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"switch-path": "^1.1.6"
},
"devDependencies": {
"babel-core": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"cycle-restart": "0.0.14",
"glob": "^7.0.3",
"html-webpack-plugin": "^2.16.0",
"install": "^0.6.1",
"node-libs-browser": "^1.0.0",
"path": "^0.12.7",
"tape": "^4.5.1",
"testem": "^1.6.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
}
}