forked from ztrauq/kickstart-flowrouter
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (73 loc) · 2.47 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
{
"name": "kickstart-meteor-react-router",
"private": "true",
"version": "1.0.0",
"description": "Kickstart a project with Meteor, React and react-router fast!",
"//": "1.0",
"//": "We define two entry points: one for the server and one for the client.",
"//": "All client files should be required recursevily from the 'browser' endpoint",
"//": "and all server files should be required recursevily from the 'main' endpoint",
"//": "Go to src/server/index.js",
"main": "src/server/index.js",
"browser": "src/client/index.jsx",
"scripts": {
"storybook": "start-storybook -p 9001",
"lint": "eslint src",
"testonly": "NODE_PATH='src' mocha .scripts/mocha_boot.js src/client/**/.tests/**/*.js* --compilers js:babel-core/register --require ignore-styles",
"test": "npm run testonly && npm run lint"
},
"dependencies": {
"csso": "^2.2.0",
"react": "^15.0.0",
"react-addons-pure-render-mixin": "^15.0.0",
"react-dom": "^15.0.0",
"react-komposer": "^1.8.0",
"react-mixin": "^3.0.3",
"react-mounter": "^1.2.0",
"react-no-ssr": "^1.1.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2"
},
"devDependencies": {
"@kadira/storybook": "^1.28.1",
"babel": "^6.3.26",
"babel-core": "^6.3.26",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.0",
"babel-plugin-add-module-exports": "^0.2.0",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"enzyme": "^2.3.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-import-resolver-webpack": "^0.3.0",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"ignore-styles": "^2.0.0",
"install": "^0.8.1",
"json-loader": "^0.5.4",
"mocha": "^2.4.5",
"npm": "^3.9.5",
"raw-loader": "^0.5.1",
"react-addons-test-utils": "~15.0.1",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.2.0",
"sift": "^3.2.1",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.0",
"webpack-hot-middleware": "^2.4.1"
}
}