This repository was archived by the owner on Jan 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.67 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.67 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "flux-react-example",
"version": "0.13.1",
"description": "An isomorphic flux-react example application",
"main": "./server",
"scripts": {
"build": "grunt build",
"dev": "grunt dev",
"debug": "grunt debug",
"devfixtures": "grunt fixtures:dev",
"prodfixtures": "grunt fixtures:prod",
"devtest": "mocha tests/unit --recursive --reporter spec",
"functest": "node tests/functional/run-parallel '--reporter spec tests/functional/main.js'",
"lint": "grunt jshint",
"perf": "grunt perf",
"prod": "grunt prod",
"start": "node -e 'process.env.NODE_ENV = process.env.NODE_ENV || \"production\"; require(\"./server\");'",
"style": "jscs .",
"test": "istanbul cover --dir ${COVERAGE_DIR:-reports/coverage} -- _mocha tests/unit/* --recursive --reporter spec",
"validate": "npm ls"
},
"pre-commit": [
"style",
"lint",
"devtest"
],
"repository": {
"type": "git",
"url": "https://localnerve@github.com/localnerve/flux-react-example"
},
"keywords": [
"flux",
"react",
"fluxible",
"isomorphic",
"example"
],
"author": "Alex Grant <alex@localnerve.com>",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/localnerve/flux-react-example/issues"
},
"engines": {
"node": "6.x"
},
"homepage": "https://github.com/localnerve/flux-react-example",
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"clean-css": "3.1.8",
"colors": "^1.1.2",
"coveralls": "^2.11.9",
"fontfaceobserver": "1.5.4",
"foundation-apps": "git://github.com/localnerve/foundation-apps",
"grunt": "0.4.5",
"grunt-autoprefixer": "^3.0.4",
"grunt-concurrent": "^2.3.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-compass": "^1.1.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "0.12.3",
"grunt-contrib-imagemin": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-nodemon": "^0.4.1",
"grunt-perfbudget": "^0.1.8",
"grunt-svg2png": "^0.2.7",
"grunt-svgmin": "3.2.0",
"grunt-webpack": "^1.0.11",
"istanbul": "^0.4.3",
"jscs": "2.11.0",
"jscs-jsdoc": "1.3.2",
"jsdom": "9.1.0",
"jshint": "^2.9.1",
"jsx-loader": "^0.13.2",
"matchdep": "^1.0.1",
"mocha": "^3.0.0",
"mockery": "^2.0.0",
"nodemon": "^1.9.1",
"precommit-hook": "^3.0.0",
"q": "^1.4.1",
"react-addons-test-utils": "^15.0.1",
"svgo": "0.5.0",
"wd": "0.3.12",
"webpack": "^1.12.15",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"amqplib": "^0.5.0",
"body-parser": "^1.15.0",
"classnames": "^2.2.3",
"compression": "^1.6.1",
"connect-modrewrite": "^0.9.0",
"cookie-parser": "^1.4.1",
"csurf": "^1.8.3",
"debug": "^2.2.0",
"es6-promise": "^4.0.5",
"express": "^4.13.4",
"express-error-handler": "git://github.com/localnerve/express-error-handler",
"fluxible": "^1.0.5",
"fluxible-addons-react": "^0.2.8",
"fluxible-plugin-fetchr": "^0.3.9",
"fluxible-router": "^0.4.13",
"inherits": "^2.0.1",
"lodash": "^4.10.0",
"morgan": "^1.7.0",
"nconf": "^0.8.4",
"node-jsx": "^0.13.3",
"nodemailer": "^2.3.2",
"object-assign": "^4.0.1",
"react": "^15.0.1",
"react-addons-css-transition-group": "^15.0.1",
"react-dom": "^15.0.1",
"react-spinner": "git://github.com/localnerve/react-spinner",
"react-swipe": "git://github.com/localnerve/react-swipe",
"remarkable": "^1.6.2",
"serialize-javascript": "^1.2.0",
"serve-favicon": "^2.3.0",
"sitemap-xml": "git://github.com/localnerve/sitemap-xml",
"superagent": "^3.3.1"
}
}