-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.4 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.4 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
{
"name": "spike",
"version": "1.3.0",
"description": "Basic architecture and dependencies for creating a React app alongside a server api.",
"scripts": {
"test": "npm run test_client && npm run test_server && npm run lint",
"test_client": "BABEL_DISABLE_CACHE=1 karma start --single-run",
"test_server": "BABEL_DISABLE_CACHE=1 babel-node test.server.js",
"lint": "eslint --fix .",
"build_design": "gulp build --env design",
"start": "babel-node run.js",
"develop": "BABEL_DISABLE_CACHE=1 NODE_ENV=development babel-node run.js",
"production": "BABEL_DISABLE_CACHE=1 NODE_ENV=production babel-node run.js",
"design": "NODE_ENV=design npm start",
"generate": "gulp generate"
},
"keywords": [
"karma",
"history",
"react",
"babel",
"react",
"express",
"webpack",
"redux",
"es6"
],
"devDependencies": {
"cheerio": "0.20.x",
"cookies-js": "1.2.x",
"css-loader": "0.23.x",
"eslint": "2.7.0",
"eslint-plugin-react": "4.3.0",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.8.x",
"gulp": "3.9.1",
"gulp-foreach": "^0.1.0",
"gulp-rename": "^1.2.2",
"gulp-template": "^4.0.0",
"jasmine": "^2.4.1",
"jasmine-core": "2.4.1",
"json-loader": "0.5.4",
"karma": "^0.13.19",
"karma-coverage": "^0.5.3",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "1.0.0",
"karma-firefox-launcher": "1.0.0",
"karma-phantomjs-shim": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.24",
"karma-webpack": "^1.7.0",
"mkdirp": "0.5.1 ",
"ncp": "2.0.x",
"node-sass": "3.4.2",
"node-uuid": "1.4.x",
"path-to-regexp": "1.5.x",
"phantomjs-prebuilt": "2.1.4",
"raw-loader": "0.5.1",
"respond.js": "1.4.x",
"sass-loader": "3.1.2",
"style-loader": "^0.12.3",
"supertest": "1.2.0",
"url-loader": "0.5.x",
"webpack": "1.12.9",
"webpack-dev-server": "1.14.0"
},
"dependencies": {
"app-module-path": "1.0.x",
"babel-cli": "^6.3.17",
"babel-core": "6.3.21",
"babel-eslint": "6.0.2",
"babel-loader": "6.2.0",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-module-alias": "1.4.x",
"babel-plugin-react-templates": "^1.1.0",
"babel-polyfill": "6.3.14",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"body-parser": "1.12.x",
"bootstrap": "3.3.6",
"cookie-parser": "1.4.x",
"debug": "~2.1.1",
"ejs": "~2.4.1",
"express": "4.13.3",
"extend": "3.0.x",
"font-awesome": "4.6.x",
"history": "^2.0.0",
"i18next": "^2.5.1",
"i18next-node-fs-backend": "0.1.x",
"i18next-xhr-backend": "^0.5.3",
"immutable": "3.8.x",
"jquery": "2.2.x",
"morgan": "~1.5.1",
"moment": "2.13.x",
"query-string": "^3.0.0",
"react": "0.14.7",
"react-addons-test-utils": "0.14.7",
"react-bootstrap": "0.29.x",
"react-dom": "0.14.7",
"react-redux": "4.4.x",
"react-templates": "0.4.x",
"react-templates-loader": "0.4.x",
"redux": "3.5.x",
"redux-act": "0.5.x",
"redux-loop": "2.1.x",
"serve-favicon": "2.2.x",
"underscore.string": "^3.3.4",
"yargs": "3.32.0"
},
"author": "Eric Hulburd <eric@analyticsfire.com> (http://afdc.co/)",
"repository": {
"type": "git",
"url": "https://github.com/AnalyticsFire/spike"
},
"license": "MIT"
}