-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.27 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.27 KB
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
{
"name": "a17-styled-system",
"version": "0.1.0",
"private": true,
"dependencies": {
"@svgr/webpack": "^7.0.0",
"colord": "^2.9.3",
"dequal": "^2.0.3",
"next": "^13.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "5.3.9",
"tsconfig-paths-webpack-plugin": "^4.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:rd": "next lint --dir ./src/RD",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prettier": "prettier --write .",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"types": "tsc",
"lint:fix": "npm run lint -- --fix",
"format:fix": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest",
"test:watch": "jest --watch",
"test:lint": "jest eslint-local-rules",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/area17/a17-styled-system.git"
},
"bugs": {
"url": "https://github.com/area17/a17-styled-system/issues"
},
"homepage": "https://github.com/area17/a17-styled-system#readme",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@etchteam/storybook-addon-status": "^4.2.4",
"@storybook/addon-a11y": "^7.2.0",
"@storybook/addon-actions": "^7.2.0",
"@storybook/addon-essentials": "^7.2.0",
"@storybook/addon-interactions": "^7.2.0",
"@storybook/addon-links": "^7.2.0",
"@storybook/nextjs": "^7.2.0",
"@storybook/node-logger": "^7.2.0",
"@storybook/react": "^7.2.0",
"@storybook/testing-library": "^0.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/contentful-resolve-response": "^0.1.31",
"@types/google.maps": "^3.53.4",
"@types/jest": "^29.5.0",
"@types/node": "18.15.10",
"@types/prettier": "^2.7.2",
"@types/react": "^18.0.30",
"@types/react-datepicker": "^4.11.2",
"@types/react-dom": "18.0.11",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-named-exports-order": "^0.0.2",
"babel-plugin-styled-components": "^2.1.4",
"default-browser-id": "^3.0.0",
"eslint": "^8.36.0",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-local-rules": "^2.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6.13",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.7",
"storybook": "^7.2.0",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5",
"uuid": "^9.0.0"
},
"optionalDependencies": {
"@esbuild/linux-x64": "^0.18.5"
},
"overrides": {
"react": {
"@mdx-js/react": "^18.2.0"
}
}
}