-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.42 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
{
"name": "cna-typescript",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest -c jest.unit.config.js",
"e2e": "jest -c jest.e2e.config.js",
"lint": "npm run lint:tsc && npm run lint:eslint",
"lint:tsc": "tsc --noEmit",
"lint:eslint": "eslint --fix \"./src/**/*.{ts,tsx}\"",
"plop": "cross-env TS_NODE_PROJECT='./ts-node.tsconfig.json' plop",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"modern-css-reset": "1.4.0",
"next": "12.0.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"styled-components": "5.3.3"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@storybook/addon-a11y": "6.3.12",
"@storybook/addon-actions": "6.3.12",
"@storybook/addon-essentials": "6.3.12",
"@storybook/addon-links": "6.3.12",
"@storybook/react": "6.3.12",
"@testing-library/dom": "8.11.1",
"@testing-library/jest-dom": "5.15.0",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.5.0",
"@types/jest": "27.0.2",
"@types/node": "16.11.7",
"@types/react": "17.0.35",
"@types/styled-components": "5.1.15",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"babel-jest": "27.3.1",
"babel-loader": "8.2.3",
"babel-plugin-inline-react-svg": "2.0.1",
"babel-plugin-styled-components": "1.13.3",
"babel-preset-react-app": "10.0.0",
"cross-env": "7.0.3",
"eslint": "8.2.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import-helpers": "1.1.0",
"eslint-plugin-jest": "25.2.4",
"eslint-plugin-jest-dom": "3.9.2",
"eslint-plugin-jest-playwright": "0.6.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.27.0",
"eslint-plugin-testing-library": "5.0.0",
"expect-playwright": "0.8.0",
"husky": "7.0.4",
"jest": "27.3.1",
"jest-playwright-preset": "1.7.0",
"lint-staged": "12.0.2",
"playwright": "1.16.3",
"plop": "2.7.6",
"prettier": "2.4.1",
"stylelint": "14.1.0",
"stylelint-config-standard": "24.0.0",
"ts-jest": "27.0.7",
"ts-node": "10.4.0",
"typescript": "4.4.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/*.{ts,tsx}": [
"prettier --write",
"eslint --fix-dry-run"
]
}
}