-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.06 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
{
"name": "gomibako",
"version": "0.0.1",
"repository": {
"url": "git@github.com:hakobe/gomibako.git",
"type": "git"
},
"author": "hakobe <hakobe@gmail.com>",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.5.3",
"babel-loader": "^6.2.7",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"del": "^2.2.2",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.5.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^3.0.1",
"gulp-postcss": "^6.2.0",
"postcss-nested": "^1.0.0",
"webpack-stream": "^3.2.0"
},
"scripts": {
"start": "gulp"
},
"eslintConfig": {
"extends": "airbnb",
"plugins": [
"import"
],
"env": {
"browser": true
}
},
"babel": {
"presets": [
"latest",
"react"
]
},
"dependencies": {
"babel-polyfill": "^6.16.0",
"react": "^15.3.2",
"react-dom": "^15.3.2"
}
}