forked from TrellisCommerce/react-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.53 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
{
"name": "@trelliscommerce/react-components",
"version": "1.0.0",
"description": "A React component library by Trellis",
"main": "dist/cjsindex.js",
"module": "dist/esmindex.js",
"files": [
"dist"
],
"engines": {
"npm": ">=7.0.0",
"node": ">=14.17.0"
},
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"next-dev": "next dev",
"build": "rm -rf /dist && npm run build:esm && npm run build:cjs && npm run next-build",
"build:esm": "tsc --preserveWatchOutput --jsx react-jsx",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs",
"next-build": "ISNEXT=true next build && build-storybook -o ./public/storybook-static",
"next-start": "next start",
"start": "ISNEXT=true next start",
"watch": "tsc -w --preserveWatchOutput --jsx react-jsx",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/trellisboston/react-components.git"
},
"author": "",
"license": "MIT",
"homepage": "https://bitbucket.org/trellisboston/react-components#readme",
"dependencies": {
"next": "^12.1.0",
"prop-types": "^15.8.1",
"react": "^16.8.0 || ^17",
"react-dom": "^16.8.0 || ^17",
"react-swipeable": "^7.0.0"
},
"peerDependencies": {
"@headlessui/react": "^1.5.0",
"@storybook/addon-a11y": "^6.4.19",
"clsx": "^1.1.1",
"postcss": "^8",
"react": "^16.8.0 || ^17",
"react-dom": "^16.8.0 || ^17",
"storybook-addon-state": "^1.0.3",
"tailwindcss": "^3"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@storybook/addon-actions": "^6.5.6",
"@storybook/addon-essentials": "^6.5.6",
"@storybook/addon-links": "^6.5.6",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addons": "^6.5.6",
"@storybook/builder-webpack5": "^6.5.6",
"@storybook/manager-webpack5": "^6.5.6",
"@storybook/react": "^6.5.6",
"@storybook/theming": "^6.5.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@trelliscommerce/prettier-config": "^1.0.0",
"@types/jest": "^28.1.8",
"@types/node": "^18.6.1",
"@types/prop-types": "^15.7.5",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"babel-loader": "^8.2.3",
"eslint": "^8.7.0",
"husky": "^7.0.4",
"jest": "^29.4.0",
"jest-environment-jsdom": "^29.4.0",
"prettier": "^2.5.1",
"ts-jest": "^29.0.5",
"typescript": "^4.7.4"
},
"prettier": "@trelliscommerce/prettier-config",
"resolutions": {
"webpack": "^5"
}
}