forked from react-next-boilerplate/react-next-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.37 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
{
"name": "react-next-boilerplate",
"version": "1.2.0",
"main": "index.js",
"author": "Jorge Luis Calleja <jorgelca1205@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test:unit": "cross-env NODE_ENV=test jest --coverage",
"test": "npm run test:unit",
"test:watch": "cross-env NODE_ENV=test jest --watchAll",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "npm run lint:js",
"lint:js": "eslint src --fix",
"prettier": "prettier --config .prettierrc \"./**/*.+(js|json|jsx)\" --write",
"clean:example": "rnb --c"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"./**/*.+(js|json|jsx)": [
"prettier --write"
]
},
"dependencies": {
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"@typefaces-pack/typeface-inter": "^1.0.3",
"clsx": "^1.1.1",
"express": "^4.17.1",
"fontsource-metropolis": "^3.1.5",
"hoist-non-react-statics": "3.3.0",
"i18next": "^19.8.4",
"immer": "^8.0.1",
"invariant": "2.2.4",
"lodash": "^4.17.21",
"next": "^10.0.3",
"next-i18next": "^7.0.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "7.0.2",
"redux": "4.0.1",
"redux-saga": "1.0.2",
"redux-saga-routines": "^3.1.3",
"reselect": "4.0.0",
"signale": "^1.4.0"
},
"devDependencies": {
"@babel/preset-env": "^7.10.2",
"@emotion/babel-plugin": "^11.1.2",
"@r-next-b/cli": "^0.1.1",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.6.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-plugin-dynamic-import-node": "^2.3.0",
"coveralls": "^3.0.9",
"cross-env": "^7.0.0",
"eslint": "^6.0.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^22.7.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"eslint-plugin-redux-saga": "^1.0.0",
"husky": "^2.4.1",
"jest-cli": "^24.9.0",
"lint-staged": "^10.0.3",
"prettier": "^1.18.2",
"react-test-renderer": "^17.0.1",
"whatwg-fetch": "^3.0.0"
}
}