-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
122 lines (122 loc) · 4.13 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "next-js-template",
"version": "0.1.0",
"private": true,
"scripts": {
"build:prod": "env-cmd -f environments/.env.production next build",
"build:qa": "env-cmd -f environments/.env.qa next build",
"build:dev": "env-cmd -f environments/.env.development next build",
"start:prod": "env-cmd -f environments/.env.production next start",
"start:qa": "env-cmd -f environments/.env.qa next dev",
"start:dev": "env-cmd -f environments/.env.development next dev",
"dev": "next dev",
"custom:dev": "env-cmd -f environments/.env.development node server/index.js",
"build": "next build",
"start": "next start",
"test": "jest --coverage",
"test:ci": "jest --ci",
"lint": "npm run lint:js && npm run lint:css",
"lint:css": "stylelint **/*.js",
"lint:eslint": "eslint",
"lint:eslint:fix": "eslint --fix",
"lint:js": "npm run lint:eslint -- . ",
"lint:staged": "lint-staged",
"test:clean": "rimraf ./coverage",
"test:staged": "jest --findRelatedTests",
"test:watch": "NODE_ENV=test jest --watchAll",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"generate": "react-generate"
},
"lint-staged": {
"*.js": [
"npm run lint:eslint:fix",
"git add --force",
"jest --findRelatedTests --passWithNoTests $STAGED_FILES"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"pre-commit": "lint:staged",
"dependencies": {
"@ant-design/icons": "^5.4.0",
"@emotion/react": "11.13.3",
"@emotion/styled": "^11.13.0",
"@formatjs/intl-relativetimeformat": "^11.2.14",
"@formatjs/intl-utils": "^3.8.4",
"@webcomponents/shadydom": "^1.11.0",
"antd": "^5.20.5",
"apisauce": "^2.1.6",
"env-cmd": "^10.1.0",
"hoist-non-react-statics": "^3.3.2",
"immer": "^9.0.21",
"invariant": "^2.2.4",
"lodash": "^4.17.21",
"next": "14.2.8",
"next-images": "^1.8.5",
"next-redux-wrapper": "^8.1.0",
"prop-types": "^15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-intl": "^6.6.8",
"react-redux": "^9.1.2",
"redux": "^5.0.1",
"redux-saga": "^1.3.0",
"reduxsauce": "^1.3.0",
"reselect": "^5.1.1",
"styled-components": "^6.1.13"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@emotion/babel-plugin": "11.12.0",
"@emotion/jest": "^11.13.0",
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"axios-mock-adapter": "^1.22.0",
"babel-jest": "^29.7.0",
"babel-plugin-styled-components": "^2.1.4",
"eslint": "^9.9.1",
"eslint-config-next": "14.2.8",
"eslint-config-prettier": "^9.1.0",
"eslint-config-prettier-standard": "^4.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-immutable": "github:alichherawalla/eslint-plugin-immutable.git#6af48f5498ca1912b618c16bceab8c5464a92f1c",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "^7.1.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-cli": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-styled-components": "^7.2.0",
"lint-staged": "^15.2.10",
"next-transpile-modules": "^10.0.1",
"postcss": "8.4.45",
"postcss-scss": "4.0.9",
"postcss-styled": "0.34.0",
"postcss-styled-syntax": "^0.6.4",
"postcss-syntax": "^0.36.2",
"prettier": "^3.3.3",
"prettier-config-standard": "^7.0.0",
"react-floki": "^1.0.96",
"react-test-renderer": "^18.3.1",
"stylelint": "^16.9.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-config-styled-components": "^0.1.1"
}
}