-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.28 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
{
"name": "setup-example-next",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"analyze": "ANALYZE=true npm run build",
"browserupdate-coverage": "npx browserslist@latest && npm run coverage",
"build-storybook": "storybook build",
"build": "next build",
"check-format": "npm run pretty -- --list-different",
"commit": "npx git-cz",
"coverage": "jest --config jest.config.js",
"cy:open": "npx cypress open",
"cy:run": "percy exec -- npx cypress run",
"dev": "npm-run-all --parallel develop mock-server",
"develop": "npx browserslist@latest && next dev -p 8080",
"e2e:test": "npx browserslist@latest && start-server-and-test start http://localhost:3000 cy:run",
"format": "npm run pretty -- --write",
"lint": "eslint --ignore-path .gitignore --ext .js --ext .jsx .",
"mock-server": "json-server --watch db.json --port 3000",
"pretty": "prettier --ignore-path .gitignore \"**/*.+(js|json|md)\"",
"start": "next build && next start",
"storybook": "storybook dev -p 6006",
"test": "jest",
"validate": "npm-run-all --parallel check-format lint"
},
"keywords": [],
"author": "loonz806 <@loonz806>",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@percy/cli": "^1.27.2",
"@storybook/addon-actions": "^7.4.6",
"@storybook/addon-essentials": "^7.4.6",
"@storybook/addon-links": "^7.4.6",
"@storybook/addon-mdx-gfm": "^7.4.6",
"@storybook/nextjs": "^7.4.6",
"@storybook/react": "^7.4.6",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"core-js": "^3.33.0",
"css-loader": "^6.8.1",
"eslint": "^8.50.0",
"eslint-config-next": "^13.5.4",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-storybook": "^0.6.14",
"@tanstack/eslint-plugin-query": "5.47.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"sass-loader": "^13.3.2",
"start-server-and-test": "^2.0.1",
"storybook": "^7.4.6",
"storybook-addon-swc": "^1.2.0",
"style-loader": "^3.3.3"
},
"dependencies": {
"@next/bundle-analyzer": "^13.5.6",
"@percy/cypress": "^3.1.2",
"@swc/core": "^1.6.6",
"@testing-library/cypress": "^10.0.1",
"cypress": "^13.13.0",
"cypress-axe": "^1.5.0",
"dotenv": "^16.4.5",
"eslint-plugin-cypress": "^2.15.2",
"identity-obj-proxy": "^3.0.0",
"json-server": "^0.17.4",
"next": "^13.5.6",
"next-images": "^1.8.5",
"node-fetch": "^2.6.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.3",
"sass": "^1.72.0",
"store": "^2.0.12"
},
"jestSonar": {
"reportPath": "./coverage/",
"reportFile": "test-reporter.xml"
}
}