-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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
{
"name": "flow-starter-kit",
"version": "1.0.0",
"description": "Next.js, Flow, ES6, ESLint",
"main": "index.js",
"author": "Roman Nmk",
"license": "MIT",
"dependencies": {
"next": "^4.2.1",
"next-redux-wrapper": "^1.3.5",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"scripts": {
"dev": "next",
"build": "next build",
"eslint": "eslint .",
"stylelint": "stylelint .",
"start": "next start",
"precommit": "lint-staged"
},
"devDependencies": {
"babel-eslint": "^8.0.3",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.13.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-flowtype": "^2.40.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.61.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"lost": "^8.2.0",
"postcss-nested": "^3.0.0",
"prettier": "^1.9.2",
"redux-devtools-extension": "^2.13.2",
"styled-jsx-plugin-postcss": "^0.1.1",
"stylelint": "^8.4.0",
"stylelint-config-standard": "^18.0.0"
},
"lint-staged": {
"*.{js,css}": ["yarn eslint && yarn stylelint && flow", "git add"]
},
"postcss": {
"plugins": {
"lost": {},
"postcss-nested": {}
}
}
}