forked from felipecsl/roberthood
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.27 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
{
"name": "robert-hood-web",
"version": "1.0.0",
"description": "Robert Hood web app",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/felipecsl/roberthood"
},
"scripts": {
"build": "browserify -d -e src/app.js -t babelify -o public/javascripts/bundle.js",
"watch": "watchify -d -e src/app.js -t babelify -o public/javascripts/bundle.js -v",
"server": "babel-node ./server.js",
"prod:server": "node build/server.js",
"start": "npm-run-all build --parallel watch server",
"postinstall": "bower install && babel -d build server.js",
"test": "open test.html && npm-run-all test:build test:watch",
"test:ci": "npm-run-all test:build test:run",
"test:build": "browserify -d -e spec/specHelper.js -t babelify -o spec/bundleSpec.js",
"test:watch": "watchify -d -e spec/specHelper.js -t babelify -o spec/bundleSpec.js -v",
"test:run": "jasmine"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"eslint": "^2.10.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-config-cycle": "^3.2.0",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.1.1",
"exorcist": "^0.4.0",
"mkdirp": "^0.5.1",
"node-sass": "^3.4.2",
"tape": "^4.4.0",
"uglify-js": "^2.6.1",
"vulcanize": "^1.14.7",
"watchify": "^3.7.0"
},
"dependencies": {
"@cycle/core": "^6.0.3",
"@cycle/dom": "^9.4.0",
"@cycle/history": "^2.0.2",
"@cycle/http": "^8.2.2",
"@cycle/isolate": "^1.2.0",
"accounting": "^0.4.1",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.3.0",
"body-parser": "^1.15.0",
"bower": "^1.7.9",
"browserify": "^13.0.0",
"chokidar-cli": "^1.2.0",
"cyclic-router": "^1.0.0",
"d3": "^3.5.16",
"ejs": "^2.4.1",
"express": "^4.13.4",
"history": "^2.0.1",
"jasmine": "^2.4.1",
"moment": "^2.12.0",
"npm-run-all": "^2.1.0",
"request": "^2.69.0",
"require-globify": "^1.3.0",
"rx": "^4.1.0",
"switch-path": "^1.1.3",
"uglifyify": "^3.0.1",
"underscore": "^1.8.3"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"license": "MIT"
}