-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.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
{
"name": "redux-simple-starter",
"version": "1.0.0",
"description": "Simple starter package for Redux with React and Babel support",
"main": "index.js",
"repository": "git@github.com:StephenGrider/ReduxSimpleStarter.git",
"scripts": {
"start": "./node_modules/webpack/bin/webpack.js -p --progress && node server.js",
"dev": "webpack-dev-server",
"test": "mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive ./test",
"test:watch": "npm run test -- --watch",
"heroku-postbuild": "npm install --only=dev --no-shrinkwrap && npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"chai": "^3.5.0",
"chai-jquery": "^2.0.0",
"jquery": ">=3.4.1",
"jsdom": "^8.1.0",
"lodash": ">=4.17.11",
"mocha": "^2.4.5",
"webpack": "^1.12.9",
"webpack-dev-server": ">=3.1.11"
},
"dependencies": {
"babel-preset-stage-1": "^6.1.18",
"lodash": ">=4.17.11",
"react": "16.3.2",
"react-dom": ">=16.3.3",
"react-redux": "5.0.7",
"react-router": "^2.0.1",
"redux": "4.0.0",
"youtube-api-search": "0.0.5",
"express": "^4.14.0"
}
}