forked from wednesday-solutions/next-bulletproof-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.01 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
{
"name": "nextjs-template",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development next dev",
"build": "next build",
"start": "cross-env NODE_ENV=production next start",
"lint": "next lint",
"lint:staged": "lint-staged",
"prepare": "husky install",
"test": "cross-env NODE_ENV=test jest",
"test:watch": "jest --env=jsdom --watch",
"test:coverage": "jest --env=jsdom --coverage",
"prettify": "prettier --write ./**/*.ts",
"lint:eslint:fix": "yarn eslint . --ext .ts,.tsx --fix",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build"
},
"resolutions": {
"styled-components": "^5"
},
"dependencies": {
"@next/bundle-analyzer": "^12.1.0",
"@reduxjs/toolkit": "^1.7.2",
"@zeit/next-css": "^1.0.1",
"@zeit/next-less": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"antd": "^4.21.0",
"apisauce": "^2.1.5",
"babel-plugin-import": "^1.13.3",
"cross-env": "^7.0.3",
"history": "^5.3.0",
"isomorphic-fetch": "^3.0.0",
"less": "^4.1.2",
"lodash-es": "^4.17.21",
"next": "12.0.10",
"next-compose-plugins": "^2.2.1",
"next-pwa": "^5.5.4",
"next-redux-wrapper": "^7.0.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-intl": "^5.24.6",
"react-redux": "^7.2.6",
"styled-components": "^5.3.3",
"styled-media-query": "^2.1.2",
"util": "^0.12.4"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^7.0.2",
"@types/isomorphic-fetch": "^0.0.36",
"@types/jest": "^28.1.0",
"@types/lodash": "^4.14.182",
"@types/node": "17.0.14",
"@types/prop-types": "^15.7.4",
"@types/react": "^17.0.39",
"@types/styled-components": "^5.1.24",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"@welldone-software/why-did-you-render": "^7.0.1",
"babel-jest": "^28.1.0",
"babel-plugin-formatjs": "^10.3.18",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-react-remove-properties": "^0.3.0",
"babel-plugin-require-context-hook": "^1.0.0",
"babel-plugin-transform-dynamic-import": "^2.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-plugin-typescript-to-proptypes": "^2.0.0",
"eslint": "^8.8.0",
"eslint-config-next": "12.0.10",
"eslint-plugin-react": "^7.28.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"lint-staged": "^12.3.3",
"pre-commit": "^1.2.2",
"prettier": "2.5.1",
"prop-types": "^15.8.1",
"ts-jest": "^28.0.4",
"typescript": "4.5.5"
}
}