forked from pankod/next-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.47 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@pankod/next-boilerplate",
"description": "A well-structured production ready Next.js boilerplate with Typescript, Redux, Jest, Enzyme, Express.js, Sass, Css, EnvConfig, Fetch, Reverse Proxy, Bundle Analyzer and Built-in Project CLI. https://pankod.github.io/next-boilerplate/",
"version": "2.0.0",
"repository": "https://github.com/pankod/next-boilerplate",
"author": "Pankod <[email protected]>",
"contributors": [
"Batuhan Wilhelm <[email protected]>"
],
"scripts": {
"start:dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"start": "cross-env NODE_ENV=production node dist/index.js",
"test": "jest --coverage",
"lint": "eslint './{src,pages,server}/**/*' --ext .tsx,.ts",
"pretty": "prettier --write --config .prettierrc.js {src,pages,server}/**/*.{ts,tsx}",
"format": "npm run lint -- --fix",
"analyze": "cross-env BUNDLE_ANALYZE=both npm run build",
"export": "cross-env NODE_ENV=production next export",
"cli": "pankod-cli add"
},
"dependencies": {
"@zeit/next-bundle-analyzer": "^0.1.2",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"autoprefixer": "^9.6.1",
"cross-env": "^5.2.1",
"dotenv": "^8.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"express": "^4.17.1",
"http-proxy-middleware": "^0.20.0",
"isomorphic-unfetch": "^3.0.0",
"jest-styled-components": "^6.3.3",
"next": "^9.0.6",
"next-compose-plugins": "^2.2.0",
"next-i18next": "^1.2.1",
"next-redux-wrapper": "^3.0.0",
"next-routes": "^1.4.2",
"next-runtime-dotenv": "^1.2.0",
"node-sass": "^4.12.0",
"query-string": "^6.8.3",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@pankod/pankod-cli": "^1.0.0",
"@types/dotenv": "^6.1.1",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/express": "^4.17.1",
"@types/jest": "^24.0.18",
"@types/next-redux-wrapper": "^2.0.2",
"@types/nock": "^10.0.3",
"@types/node": "^12.7.5",
"@types/react": "^16.9.2",
"@types/react-redux": "^7.1.2",
"@types/redux-mock-store": "^1.0.1",
"@types/styled-components": "^4.1.19",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"babel-eslint": "10.x",
"babel-jest": "^24.9.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-styled-components": "^1.10.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"eslint": "^6.4.0",
"eslint-config-airbnb-typescript": "^4.0.1",
"eslint-config-prettier": "^6.3.0",
"eslint-config-react-app": "^5.0.2",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-flowtype": "3.x",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "1.x",
"jest": "^24.9.0",
"jest-styled-components": "^6.3.3",
"nock": "^11.3.5",
"nodemon": "^1.19.2",
"prettier": "1.18.2",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.3",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
},
"pankod": {
"projectType": "nextjs2"
},
"license": "ISC"
}