-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.82 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
{
"name": "frontend-developer",
"version": "1.0.0",
"main": "index.js",
"repository": {
"url": "git@github.com:iGitScor/frontend-developer.git",
"type": "git"
},
"author": "iGitScor <sebastien.correaud@gmail.com>",
"license": "MIT",
"scripts": {
"start": "gulp",
"build": "gulp main",
"test": "gulp test"
},
"babel": {
"presets": [
"latest",
"react",
"flow"
]
},
"eslintConfig": {
"extends": [
"airbnb",
"plugin:flowtype/recommended"
],
"parser": "babel-eslint",
"plugins": [
"import",
"flowtype"
],
"env": {
"browser": true
},
"rules": {
"new-cap": [
2,
{
"capIsNewExceptions": [
"Map",
"List"
]
}
]
}
},
"devDependencies": {
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-preset-flow": "^1.0.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"chai": "^3.5.0",
"classnames": "^2.2.5",
"del": "^2.2.2",
"eslint": "^3.9.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-flowtype": "^2.25.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"gh-pages": "^0.11.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.1.2",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"webpack-stream": "^3.2.0"
},
"dependencies": {
"babel-polyfill": "^6.16.0",
"classnames": "^2.2.5",
"immutable": "^3.8.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-actions": "^0.13.0",
"redux-immutable": "^3.0.8"
}
}