-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.77 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
91
92
93
94
95
96
{
"name": "react-slingshot",
"version": "3.0.1",
"description": "Starter kit for creating apps with React and Redux",
"scripts": {
"start-message": "babel-node tools/startMessage.js",
"prestart": "npm-run-all --parallel start-message remove-dist lint:tools",
"start": "npm-run-all --parallel test:watch open:src",
"open:src": "babel-node tools/srcServer.js",
"open:dist": "babel-node tools/distServer.js",
"lint:tools": "eslint webpack.config.js tools",
"clean-dist": "npm run remove-dist && mkdir dist",
"remove-dist": "node_modules/.bin/rimraf ./dist",
"build:html": "babel-node tools/buildHtml.js",
"build:js": "babel-node tools/build.js",
"prebuild": "npm run clean-dist && npm run build:html",
"build": "babel-node tools/build.js && npm run open:dist",
"test": "mocha tools/testSetup.js src/**/*.spec.js --reporter progress",
"test:watch": "npm run test -- --watch"
},
"author": "Cory House",
"license": "MIT",
"dependencies": {
"codemirror": "5.13.4",
"connect-history-api-fallback": "1.1.0",
"json-loader": "0.5.4",
"lodash": "4.11.1",
"object-assign": "4.0.1",
"react": "15.0.1",
"react-codemirror": "0.2.6",
"react-dom": "15.0.0",
"react-redux": "4.4.1",
"react-rich-markdown": "1.0.1",
"react-router": "2.0.0",
"redux": "3.3.1"
},
"devDependencies": {
"babel-cli": "6.5.1",
"babel-core": "6.5.1",
"babel-eslint": "5.0.0",
"babel-loader": "6.2.3",
"babel-plugin-react-display-name": "2.0.0",
"babel-preset-es2015": "6.5.0",
"babel-preset-react": "6.5.0",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-1": "6.5.0",
"browser-sync": "2.11.1",
"chai": "3.5.0",
"cheerio": "0.19.0",
"colors": "1.1.2",
"cross-env": "1.0.7",
"css-loader": "0.23.1",
"enzyme": "2.2.0",
"eslint": "2.2.0",
"eslint-loader": "1.3.0",
"eslint-plugin-import": "1.4.0",
"eslint-plugin-react": "4.0.0",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.8.5",
"mocha": "2.3.4",
"node-sass": "3.4.2",
"npm-run-all": "1.6.0",
"react-addons-test-utils": "0.14.8",
"react-markdown": "2.2.0",
"rimraf": "2.5.0",
"sass-loader": "3.1.2",
"semantic-ui": "2.1.8",
"sinon": "1.17.3",
"sinon-chai": "2.8.0",
"style-loader": "0.13.0",
"url-loader": "0.5.7",
"webpack": "1.12.11",
"webpack-dev-middleware": "1.4.0",
"webpack-hot-middleware": "2.6.0",
"yargs": "3.32.0"
},
"keywords:": [
"react",
"reactjs",
"react-router",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack",
"redux",
"flux",
"boilerplate",
"starter"
],
"repository": {
"type": "git",
"url": "https://github.com/coryhouse/react-slingshot"
}
}