-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.05 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
{
"name": "@origyn/origyn-art-ui",
"version": "1.3.7",
"author": "ORIGYN Foundation",
"license": "Apache-2.0",
"main": "build/index.js",
"module": "build/index.esm.js",
"type": "module",
"files": [
"build"
],
"scripts": {
"build": "rollup -c",
"test": "jest",
"test:watch": "jest --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"pretty": "npx prettier --write src/components"
},
"repository": {
"type": "git",
"url": "https://github.com/origyn/origyn_art_ui"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-docs": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-links": "6.5.13",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^6.5.13",
"@types/react": "^18.0.25",
"@types/react-datepicker": "^4.8.0",
"@types/react-modal": "^3.13.1",
"@types/styled-components": "^5.1.26",
"babel-loader": "^9.1.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"postcss": "^8.4.19",
"prettier": "2.7.1",
"react": "^18.2.0",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.3",
"rollup": "^3.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"styled-components": "^5.3.6",
"tslib": "^2.4.1",
"typescript": "^4.8.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.3",
"styled-components": "^5.3.6"
},
"dependencies": {
"react-datepicker": "^4.8.0",
"react-modal": "^3.16.1",
"react-responsive-carousel": "^3.2.23",
"react-select": "^5.6.0"
},
"lint-staged": {
"components/*": "prettier --write --ignore-unknown"
}
}