-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.83 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
{
"name": "moida",
"version": "0.1.0",
"private": true,
"scripts": {
"next-config": "tsc next.config.ts --skipLibCheck --module commonjs --target esnext --esModuleInterop true --allowSyntheticDefaultImports true --moduleResolution node",
"dev": "yarn next-config && start http://localhost:3000 && next dev",
"build": "yarn next-config && next build",
"start": "next start",
"lint": "eslint",
"lint:next": "next lint --dir .",
"lint:css": "stylelint \"**/*.(ts|tsx|css)\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --watchAll=false --coverage",
"prepare": "husky install"
},
"dependencies": {
"@tanstack/react-query": "^4.7.1",
"file-loader": "^6.2.0",
"next": "12.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"recoil": "^0.7.5",
"styled-components": "^5.3.5",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@storybook/addon-a11y": "^6.5.10",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-webpack5": "^6.5.10",
"@storybook/manager-webpack5": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/testing-library": "^0.0.13",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@types/babel__core": "^7.1.19",
"@types/color-convert": "^2.0.0",
"@types/file-loader": "^5.0.1",
"@types/jest": "^29.0.3",
"@types/node": "18.7.14",
"@types/react": "18.0.18",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"babel-loader": "^8.2.5",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "8.23.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-storybook": "^0.6.4",
"husky": "^8.0.1",
"jest": "^29.0.1",
"jest-environment-jsdom": "^29.0.2",
"lint-staged": "^13.0.3",
"postcss": "8",
"postcss-syntax": "^0.36.2",
"prettier": "^2.7.1",
"stylelint": "^14.11.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^28.0.0",
"stylelint-order": "^5.0.0",
"typescript": "4.8.2",
"webpack": "5.74.0"
},
"lint-staged": {
"*.{ts, tsx}": [
"eslint --fix",
"prettier --write",
"stylelint --fix"
]
}
}