This repository has been archived by the owner on Nov 15, 2022. It is now read-only.
forked from pankod/next-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.06 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
{
"name": "next-boilerplate",
"version": "1.0.0",
"description": "",
"main": "app/server.js",
"scripts": {
"start:dev": "nodemon --watch app --watch app/server.js",
"build": "cross-env NODE_ENV=production next build",
"start": "cross-env NODE_ENV=production node ./app/server.js",
"heroku-prebuild": "npm i --dev && cross-env NODE_ENV=production next build",
"export": "cross-env NODE_ENV=production next export",
"analyze": "cross-env BUNDLE_ANALYZE=both npm run build",
"cli": "pankod-cli add",
"test": "jest --coverage",
"lint": "eslint -c .eslintrc.js --ext .ts,.tsx {app,pages,src}/**",
"format": "eslint -c .eslintrc.js --ext .ts,.tsx --fix {app,pages,src}/**/*"
},
"pankod": {
"projectType": "nextjs"
},
"dependencies": {
"@material-ui/core": "^4.5.2",
"@types/i18next": "^11.9.3",
"@types/react-i18next": "^7.8.3",
"@zeit/next-bundle-analyzer": "^0.1.2",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"awesome-typescript-loader": "^5.2.1",
"cross-env": "^5.2.0",
"express": "^4.17.1",
"http-proxy-middleware": "^0.19.1",
"i18next": "^11.3.3",
"i18next-browser-languagedetector": "^2.2.0",
"i18next-express-middleware": "^1.2.0",
"i18next-node-fs-backend": "^1.0.0",
"i18next-xhr-backend": "^1.5.1",
"isomorphic-unfetch": "^3.0.0",
"next": "^9.1.2",
"next-compose-plugins": "^2.1.1",
"next-redux-wrapper": "^2.1.0",
"next-routes": "^1.4.2",
"next-runtime-dotenv": "^1.0.1",
"nock": "^10.0.6",
"node-sass": "^4.11.0",
"query-string": "^6.5.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-i18next": "^7.13.0",
"react-jss": "^10.0.0",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"styled-components": "^4.4.0"
},
"devDependencies": {
"@pankod/pankod-cli": "^0.2.3",
"@types/enzyme": "^3.9.1",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.12",
"@types/next-redux-wrapper": "^2.0.2",
"@types/node": "^11.13.8",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^6.0.11",
"@types/redux-mock-store": "^1.0.0",
"@types/styled-components": "^4.1.20",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"autoprefixer": "^9.4.3",
"babel-jest": "^24.8.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-styled-components": "^1.10.6",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"jest": "^24.7.1",
"nodemon": "^1.18.11",
"nyc": "^14.1.0",
"prettier": "^1.17.1",
"react-test-renderer": "^16.8.6",
"redux-devtools-extension": "^2.13.7",
"redux-mock-store": "^1.5.3",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
},
"author": "",
"license": "ISC"
}