-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.18 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
{
"name": "product-list",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test:coverage": "yarn-or-npm test --coverage",
"test:debug": "yarn-or-npm test --debug --detectOpenHandles",
"test:ci": "yarn-or-npm test --runInBand --no-cache --ci",
"test": "NODE_ENV=test jest --watch",
"lint": "eslint './{src,pages}/**/*' --ext .js,.jsx,.tsx,.ts",
"format": "eslint './{src,pages}/**/*' --ext .js,.jsx,.tsx,.ts --fix",
"analyze": "cross-env BUNDLE_ANALYZE=both next build",
"export": "cross-env NODE_ENV=production next export",
"production": "npm-run-all analyze export",
"production:clean": "rimraf out/"
},
"dependencies": {
"@reduxjs/toolkit": "^1.7.2",
"axios": "^0.25.0",
"classnames": "^2.3.1",
"framer-motion": "^6.2.4",
"fuse.js": "^6.5.3",
"next": "^12.0.8",
"rc-dialog": "^8.6.0",
"rc-pagination": "^3.1.15",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"sass": "^1.49.7"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-next": "^12.0.8",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-sonarjs": "^0.11.0",
"jest": "^27.4.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4",
"yarn-or-npm": "^3.0.1"
}
}