-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.81 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
{
"name": "@originprotocol/origin-storybook",
"version": "0.27.22",
"description": "Component library for Origin Protocol, using Storybook",
"main": "lib/index.js",
"dir": "lib",
"module": "lib/esm/src/index.js",
"types": "lib/index.d.ts",
"sideEffects": [
"**/*.css"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=6.0.0"
},
"repository": "https://github.com/originprotocol/origin-storybook.git",
"author": "Nick Hong",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/core": "^7.19.0",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@headlessui/react": "^1.7.0",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"@storybook/addon-actions": "^7.2.3",
"@storybook/addon-essentials": "^7.2.3",
"@storybook/addon-interactions": "^7.2.3",
"@storybook/addon-jest": "^7.2.3",
"@storybook/addon-links": "^7.2.3",
"@storybook/addon-styling": "^1.3.6",
"@storybook/nextjs": "^7.2.3",
"@storybook/react": "^7.2.3",
"@storybook/testing-library": "^0.2.0",
"@types/jest": "^29.0.2",
"@types/react": "^17.0.2",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"autoprefixer": "^10.4.9",
"babel-jest": "^29.0.3",
"babel-loader": "^8.2.5",
"chromatic": "^6.9.0",
"cssnano": "^5.1.13",
"eslint": "^8.29.0",
"eslint-plugin-react": "^7.31.11",
"jest": "^29.0.3",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rollup": "^2.79.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svg": "^2.0.0",
"rollup-plugin-typescript2": "^0.33.0",
"storybook": "^7.2.3",
"tailwindcss": "^3.2.3",
"typescript": "^4.8.3"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o docs-build",
"chromatic": "npx chromatic --project-token=7db6a89b14e5",
"test:generate-output": "jest --json --outputFile=.jest-test-results.json",
"build": "NODE_ENV=production rollup -c",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"test": "jest"
},
"files": [
"/lib"
],
"dependencies": {
"@heroicons/react": "^2.0.11",
"next": "^10.2.3 || ^12.3.1",
"next-transpile-modules": "^10.0.1",
"rollup-plugin-copy": "^3.4.0",
"tailwind-merge": "^1.8.1"
},
"prettier": {
"semi": false,
"singleQuote": true,
"proseWrap": "always",
"trailingComma": "none"
}
}