-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.61 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
{
"name": "next-redux-saga-example",
"author": "Artur Kornatowski <[email protected]>",
"license": "MIT",
"repository": "github:akornato/next-redux-saga-example",
"scripts": {
"dev": "concurrently -n web,lambda \"node dev.server.js\" \"netlify-lambda serve lambda\"",
"test": "jest --coverage",
"build": "next build && netlify-lambda build lambda",
"export": "next export",
"deploy": "npm test && npm run build && npm run export"
},
"dependencies": {
"@zeit/next-css": "^1.0.1",
"acorn": "^6.1.1",
"antd": "^3.16.1",
"autoprefixer": "^9.5.0",
"axios": "^0.18.0",
"dotenv": "^7.0.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"isomorphic-unfetch": "^3.0.0",
"jest": "^24.7.1",
"jest-fetch-mock": "^2.1.2",
"netlify-lambda": "^1.4.3",
"next": "^8.0.4",
"postcss-easy-import": "^3.0.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-redux": "^6.0.1",
"redux": "^4.0.1",
"redux-api-middleware": "^3.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.3",
"redux-saga": "^1.0.2",
"tailwindcss": "^0.7.4"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"concurrently": "^4.1.0",
"eslint": "^5.16.0",
"eslint-config-react-app": "^3.0.8",
"eslint-plugin-flowtype": "^3.5.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"express": "^4.16.4",
"http-proxy-middleware": "^0.19.1",
"prettier": "^1.16.4"
}
}