-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.73 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
{
"name": "react-brunch-demo",
"version": "4.0.0",
"description": "It's a demo for React/Redux with ES6 and brunch.",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"typecheck": "flow check",
"build": "brunch build",
"lint": "eslint --cache src",
"build:prod": "NODE_ENV=production brunch build --production",
"dev": "brunch watch --server"
},
"author": "Spyl <contact@spyl.net>",
"license": "MIT",
"dependencies": {
"babel-brunch": "^6.1.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-latest": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.16.0",
"bootstrap-styl": "^5.0.8",
"brunch": "^2.10.8",
"react": "^15.3.2",
"react-bootstrap": "^0.30.5",
"react-dom": "^15.3.2",
"react-intl": "^2.1.5",
"react-redux": "^5.0.2",
"redux": "^3.6.0",
"redux-saga": "^0.14.3",
"stylus-brunch": "^2.10.0"
},
"devDependencies": {
"babel-plugin-react-intl": "^2.2.0",
"eslint": "^3.15.0",
"eslint-brunch": "^3.12.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.4.1",
"fb-flo-brunch": "^1.7.22",
"flow-bin": "^0.39.0",
"jest": "^18.1.0"
},
"eslintConfig": {
"extends": "airbnb",
"globals": {
"window": true,
"document": true
},
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
}
},
"rules": {
"react/jsx-filename-extension": [
"error",
{
"extensions": [
".js"
]
}
]
}
}
}