-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
40 lines (40 loc) · 1.15 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
{
"name": "next-boilerplate",
"version": "0.1.0",
"description": "A modern universal boilerplate for React applications using Next.js.",
"main": "pages/index.js",
"repository": {},
"author": "Adrian Li",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint pages modules",
"prepush": "npm run lint"
},
"dependencies": {
"babel-plugin-root-import": "^5.0.0",
"next": "beta",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"redux": "^3.6.0",
"redux-devtools-extension": "^2.13.0",
"redux-observable": "^0.13.0",
"rxjs": "^5.1.1"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-cleanjs": "^4.0.0",
"eslint-import-resolver-babel-root-import": "adrianmcli/eslint-import-resolver-babel-root-import#fix/babel-plugin-name",
"eslint-plugin-better": "^0.1.5",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"husky": "^0.13.1"
}
}