-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
101 lines (101 loc) · 3.08 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
{
"name": "react-cordova-boilerplate",
"version": "2.0.1",
"description": "TodoMVC example for react with development tools to build a cordova application",
"keywords": [
"edit",
"flux",
"hmr",
"hot",
"live",
"react",
"reactjs",
"redux",
"reload",
"todomvc",
"webpack"
],
"homepage": "https://github.com/unimonkiez/react-cordova-boilerplate#readme",
"bugs": {
"url": "https://github.com/unimonkiez/react-cordova-boilerplate/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/unimonkiez/react-cordova-boilerplate.git"
},
"scripts": {
"build": "node ./bin/build.js",
"build:prod": "npm run build -- -p",
"build:prod:watch": "npm run build -- -p -w",
"build:watch": "npm run build -- -w",
"build:watch:prod": "npm run build:prod:watch",
"lint": "eslint --fix --ext .js,.jsx .",
"lint:report": "npm run lint -- --format html -o ./report.html",
"start": "node ./bin/start.js",
"start:prod": "node ./bin/start.js -- -p",
"test": "node ./bin/test.js",
"test:watch": "npm test -- -w",
"test:coverage": "node ./bin/test-coverage.js",
"test:coverage:watch": "echo \"Error: `nyc` doesn't support watch mode\" && exit 1",
"test:watch:coverage": "npm run test:coverage:watch"
},
"dependencies": {},
"devDependencies": {
"babel-core": "^6.11.4",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.23.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-2": "^6.18.0",
"babel-runtime": "^6.20.0",
"chai": "^3.5.0",
"coveralls": "^2.13.0",
"css-loader": "^0.27.3",
"deasync": "^0.1.7",
"dirty-chai": "^1.2.2",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-import-resolver-webpack": "^0.8.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^2.22.0",
"imports-loader": "^0.7.0",
"inject-loader": "^3.0.0",
"istanbul-instrumenter-loader": "^2.0.0",
"jsdom": "^9.12.0",
"lodash": "^4.2.0",
"memory-fs": "^0.4.1",
"mocha": "^3.2.0",
"mocha-webpack": "next",
"node-sass": "^4.3.0",
"nyc": "^10.2.0",
"prop-types": "^15.5.8",
"radium": "^0.18.1",
"react": "^15.5.0",
"react-dom": "^15.5.0",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"redux": "^3.5.2",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.0.11",
"require-from-string": "^1.2.0",
"resolve-url-loader": "^2.0.2",
"sass-loader": "^6.0.3",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"style-loader": "^0.14.0",
"to-string-loader": "^1.1.5",
"url-loader": "^0.5.7",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0",
"webpack-node-externals": "^1.5.4",
"whatwg-fetch": "^2.0.1"
}
}