This repository was archived by the owner on Oct 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.83 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.83 KB
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
106
{
"name": "rxr-redux-example",
"version": "0.1.0",
"description": "RxR and Redux side by side to learn the principles.",
"main": "dist/index.html",
"scripts": {
"clean": "rimraf public && mkdir public",
"lint": "eslint src test",
"test": "cross-env NODE_ENV=test ava",
"test:watch": "npm test -- --watch -v",
"check:src": "npm run lint && npm run test",
"dev": "node server/webpack-dev-server",
"build:client": "cross-env NODE_ENV=production webpack --config webpack/webpack.prod.config.js -p",
"build": "cross-env NODE_ENV=production npm run clean && npm run build:client",
"start": "node server/server.js"
},
"author": "dacz",
"license": "MIT",
"ava": {
"files": [
"test/**/test-*.js"
],
"require": [
"babel-register",
"ignore-styles"
],
"babel": {
"babelrc": true
}
},
"engines": {
"node": "6.x.x",
"npm": "3.x.x"
},
"repository": {
"type": "git",
"url": "https://github.com/dacz/rxr-redux-example.git"
},
"keywords": [
"rxjs",
"reactive",
"redux",
"rxr",
"reducer",
"state",
"react"
],
"bugs": {
"url": "https://github.com/dacz/rxr-redux-example/issues"
},
"homepage": "https://github.com/dacz/rxr-redux-example",
"devDependencies": {
"ava": "^0.15.2",
"babel": "^6.5.2",
"babel-cli": "^6.8.0",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"copy-webpack-plugin": "^3.0.1",
"cross-env": "^2.0.0",
"css-loader": "^0.23.1",
"deep-freeze": "0.0.1",
"enzyme": "^2.4.1",
"eslint": "^3.1.1",
"eslint-config-dacz": "^0.2.0",
"eslint-plugin-import": "^1.11.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^5.2.2",
"extend": "^3.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.15.0",
"ignore-styles": "^4.0.0",
"jsdom": "^9.4.1",
"postcss": "^5.1.0",
"postcss-browser-reporter": "^0.5.0",
"postcss-cssnext": "^2.7.0",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.9.1",
"postcss-reporter": "^1.4.1",
"postcss-url": "^5.1.2",
"precss": "^1.4.0",
"rimraf": "^2.5.3",
"style-loader": "^0.13.1",
"stylelint": "^7.0.3",
"stylelint-config-standard": "^11.0.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"babel-polyfill": "^6.9.1",
"babel-runtime": "^6.9.2",
"express": "^4.14.0",
"is-observable": "^0.2.0",
"isomorphic-fetch": "^2.2.1",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"rxjs": "^5.0.0-beta.10",
"rxjs-es": "^5.0.0-beta.10",
"rxr": "^0.2.0",
"rxr-react": "^0.1.1"
}
}