-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
105 lines (105 loc) · 4.51 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
97
98
99
100
101
102
103
104
105
{
"name": "react-redux-starter",
"description": "A universal starter kit built with react, react-router and redux. Server rendering with react and express, bundles with Webpack with hot module reloading and hot style reloading with SCSS support. Bonus: Cordova support.",
"version": "0.3.0",
"license": "MIT",
"main": "client/index.js",
"repository": {
"type": "git",
"url": "https://github.com/combine/react-redux-starter.git"
},
"engines": {
"node": "5.5.0",
"npm": "3.3.x"
},
"scripts": {
"start": "npm run build:development; npm run start:development:server & npm run start:development:client",
"start:cordova": "HOT_CORDOVA=true npm run build:cordova; npm run start:development:server & HOT_CORDOVA=true npm run start:development:client",
"start:production": "node server",
"start:development:client": "HOT=true node webpack/server.development",
"start:development:server": "nodemon server",
"build:development": "webpack --progress --colors --display-error-details --config webpack/config.development.js",
"build:production": "NODE_ENV=production webpack -p --optimize-dedupe --config webpack/config.production.js",
"build:cordova": "npm run build:cordova:development",
"build:cordova:development": "npm run cordova:clean; webpack --progress --colors --display-error-details --config webpack/config.cordova.js; npm run cordova:prepare",
"build:cordova:production": "npm run cordova:clean; NODE_ENV=production webpack -p --optimize-dedupe --config webpack/config.cordova.js; npm run cordova:prepare;",
"dist:android": "node ./cordova-build --platform android --config release --distribute",
"dist:ios": "node ./cordova-build --platform ios --config release --distribute",
"cordova:clean": "rm -f $(find cordova/www/* 2>/dev/null -type f | grep -v 'gitkeep')",
"cordova:prepare": "cd cordova && cordova prepare",
"test": "mocha --recursive --compilers js:babel-register",
"test:all": "mocha --recursive --compilers js:babel-register $(find . -path ./node_modules -prune -o -name '*.test.js' -print)",
"test:watch": "npm test -- --watch",
"test:all:watch": "mocha --recursive --compilers js:babel-register $(find . -path ./node_modules -prune -o -name '*.test.js' -print) --watch",
"lint": "eslint --ignore-pattern **/node_modules/* --ext .js,.jsx .",
"postinstall": "if [ \"$NODE_ENV\" = \"production\" ]; then npm run build:production; fi"
},
"devDependencies": {
"babel-eslint": "5.0.0-beta9",
"chai": "3.5.0",
"chai-immutable": "1.5.3",
"cordova-lib": "6.0.0",
"eslint": "1.10.3",
"eslint-plugin-react": "3.16.1",
"mocha": "2.4.5",
"react-transform-catch-errors": "1.0.2",
"react-transform-hmr": "1.0.2",
"redbox-react": "1.2.2",
"redux-devtools": "3.1.1",
"redux-devtools-dock-monitor": "1.0.1",
"redux-devtools-log-monitor": "1.0.4",
"webpack-dev-server": "1.14.1",
"yargs": "3.32.0"
},
"dependencies": {
"babel": "6.5.1",
"babel-core": "6.5.1",
"babel-loader": "6.2.2",
"babel-plugin-react-transform": "2.0.0",
"babel-plugin-syntax-class-properties": "6.5.0",
"babel-plugin-syntax-decorators": "6.5.0",
"babel-plugin-syntax-object-rest-spread": "6.5.0",
"babel-plugin-transform-class-properties": "6.5.0",
"babel-plugin-transform-decorators": "6.5.0",
"babel-plugin-transform-object-rest-spread": "6.5.0",
"babel-polyfill": "6.5.0",
"babel-preset-es2015": "6.5.0",
"babel-preset-react": "6.5.0",
"babel-register": "6.5.1",
"bootstrap-sass": "3.3.6",
"classnames": "2.2.3",
"compression": "1.6.1",
"compression-webpack-plugin": "0.2.0",
"css-loader": "0.23.1",
"eslint-loader": "1.2.1",
"expose-loader": "0.7.1",
"express": "4.13.4",
"extract-text-webpack-plugin": "1.0.1",
"fastclick": "1.0.6",
"file-loader": "0.8.5",
"font-awesome": "4.5.0",
"history": "2.0.0",
"html-webpack-plugin": "2.8.1",
"include-media": "1.4.2",
"isomorphic-fetch": "2.2.1",
"json-loader": "0.5.4",
"lodash": "4.3.0",
"node-sass": "3.4.2",
"react": "0.14.7",
"react-dom": "0.14.7",
"react-redux": "4.4.0",
"react-router": "2.0.0",
"react-router-redux": "3.0.0",
"redux": "3.3.1",
"redux-localstorage": "0.4.0",
"redux-thunk": "1.0.3",
"reselect": "2.0.3",
"sass-loader": "3.1.2",
"serve-static": "1.10.2",
"style-loader": "0.13.0",
"url-loader": "0.5.7",
"webpack": "1.12.13",
"webpack-isomorphic-tools": "2.2.26",
"webpack-sources": "0.1.1"
}
}