-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.61 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.61 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
{
"name": "poker-react",
"version": "1.0.0",
"description": "Poker website using a modern js stack",
"main": "gulp",
"license": "MIT",
"scripts": {
"start": "gulp",
"test": "gulp test"
},
"babel": {
"presets": [
"latest",
"react",
"flow"
]
},
"eslintConfig": {
"extends": [
"airbnb",
"plugin:flowtype/recommended"
],
"plugins": [
"import",
"flowtype"
],
"env": {
"browser": true
},
"rules": {
"new-cap": [
2,
{
"capIsNewExceptions": [
"Map",
"List"
]
}
]
},
"parser": "babel-eslint"
},
"dependencies": {
"babel-polyfill": "^6.20.0",
"immutable": "^3.8.1",
"ramda": "^0.23.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.1",
"readline-sync": "^1.4.5",
"redux": "^3.6.0",
"redux-actions": "^1.2.0",
"redux-immutable": "^3.0.9"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-preset-flow": "^1.0.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"del": "^2.2.2",
"eslint": "^3.13.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "^6.8.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^3.0.1",
"gulp-flowtype": "^1.0.0",
"gulp-mocha": "^3.0.1",
"mocha": "^3.2.0",
"sinon": "^1.17.7",
"webpack-stream": "^3.2.0"
}
}