-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.74 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
{
"name": "@saddle-finance/saddle-design-system",
"description": "The Design System and Component Library for saddle.finance 🤠",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/saddle-finance/saddle-design-system"
},
"dependencies": {
"@types/react": "^17.0.30",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.1"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/react": "^6.3.12",
"@types/node": "^16.11.1",
"@types/styled-components": "^5.1.15",
"babel-loader": "^8.2.2",
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"node-sass": "^6.0.1",
"postcss": "^8.3.9",
"rollup": "^2.58.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-typescript2": "^0.30.0",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
},
"peerDependencies": {
"postcss": "^8.3.9",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"scripts": {
"storybook": "start-storybook -p 6008 -s public --no-dll",
"build-storybook": "build-storybook -s public --no-dll",
"build": "rollup -c"
},
"files": [
"/lib"
],
"main": "lib/index.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"publishConfig": {
"registry": "https://npm.pkg.github.com/saddle-finance"
}
}