-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
90 lines (90 loc) · 2.98 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "xstream-boilerplate",
"version": "0.1.1",
"description": "Sparks.network frontend",
"repository": {
"type": "git",
"url": "git+https://github.com/TylorS/xstream-boilerplate.git"
},
"keywords": [
"Cycle.js",
"XStream"
],
"author": [
"Tylor Steinberger <[email protected]>",
"Churchill Lee <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/TylorS/xstream-boilerplate/issues"
},
"homepage": "https://github.com/TylorS/xstream-boilerplatey#readme",
"main": "index.js",
"scripts": {
"commitmsg": "validate-commit-msg",
"commit": "git-cz",
"changelog": "conventional-changelog --infile CHANGELOG.md --same-file --release-count 0 --preset angular",
"lint": "eslint src/*.js",
"coverage": "cross-env NODE_PATH=./src babel-node ./node_modules/.bin/isparta cover _mocha --report lcovonly test/index.js -- -R spec",
"coverage:report": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test": "npm run lint && npm run coverage",
"serve-static": "pushstate-server dist/ 8080 /200.html",
"serve": "cross-env BABEL_ENV=development BUILD_ENV=development babel-node ./node_modules/webpack-dev-server/bin/webpack-dev-server",
"build": "cross-env BABEL_ENV=production BUILD_ENV=production babel-node ./node_modules/webpack/bin/webpack"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@cycle/dom": "^14.3.0",
"@cycle/isolate": "^1.3.2",
"@cycle/xstream-run": "^4.2.0",
"cyclic-router": "^3.0.1",
"es6-shim": "^0.35.2",
"normalize-css": "^2.3.1",
"ramda": "^0.23.0",
"switch-path": "^1.2.0",
"xstream": "^10.0.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.20.0",
"babel-loader": "^6.2.9",
"babel-plugin-espower": "^2.1.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2016": "^6.16.0",
"babel-preset-es2017": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"babel-register-cli": "^3.0.0",
"browser-sync": "^2.18.5",
"browser-sync-webpack-plugin": "1.1.3",
"commitizen": "^2.8.6",
"conventional-changelog": "^1.1.0",
"conventional-changelog-cli": "^1.2.0",
"coveralls": "^2.11.15",
"cross-env": "^3.1.3",
"css-loader": "^0.26.1",
"cycle-hmr": "^0.3.1",
"eslint": "^3.12.1",
"eslint-config-standard": "^6.2.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"extract-text-webpack-plugin": "2.0.0-beta.5",
"file-loader": "^0.9.0",
"image-webpack-loader": "^3.1.0",
"isparta": "^4.0.0",
"mocha": "^3.2.0",
"node-sass": "^4.3.0",
"power-assert": "^1.4.2",
"pushstate-server": "^2.1.0",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"validate-commit-msg": "^2.8.2",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0"
}
}