-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 3.71 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"version": "1.0.8",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"preinstall": "npm install -D npm-force-resolutions && npx npm-force-resolutions",
"start": "tsdx watch",
"build": "cross-env NODE_ENV=production tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "cross-env NODE_ENV=production tsdx build",
"size": "size-limit",
"size-build": "cross-env NODE_ENV=production size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -s ./static -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"@emotion/react": ">=11.1.5",
"@emotion/styled": ">=11.3.0",
"react": ">=17.0.2"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "arcana-ui",
"author": "COMPFEST",
"description": "Arcana is a Modern React Component Library",
"module": "dist/arcana-ui.esm.js",
"size-limit": [
{
"path": "dist/arcana-ui.cjs.production.min.js",
"limit": "200 KB"
},
{
"path": "dist/arcana-ui.esm.js",
"limit": "200 KB"
}
],
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/plugin-transform-react-jsx": "^7.13.12",
"@emotion/babel-plugin": "^11.3.0",
"@emotion/babel-plugin-jsx-pragmatic": "^0.1.5",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.3.0",
"@nrwl/react": "^12.0.8",
"@size-limit/preset-small-lib": "^4.10.2",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-controls": "^6.2.9",
"@storybook/addon-docs": "^6.2.9",
"@storybook/addon-essentials": "^6.2.8",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.2.8",
"@storybook/addons": "^6.2.8",
"@storybook/react": "^6.2.8",
"@tailwindcss/postcss7-compat": "^2.1.0",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@types/react": "^17.0.3",
"@types/react-calendar": "^3.4.3",
"@types/react-dom": "^17.0.3",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.2.2",
"babel-plugin-macros": "^3.0.1",
"cross-env": "^7.0.3",
"eslint": "7.25.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"npm-force-resolutions": "^0.0.10",
"postcss": "^8.0.0",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-static-files": "^0.2.0",
"size-limit": "^4.10.2",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.1.0",
"tsdx": "^0.14.1",
"tslib": "^2.2.0",
"twin.macro": "^2.3.3",
"typescript": "^4.2.4"
},
"dependencies": {
"@headlessui/react": "^1.4.1",
"framer-motion": "^4.1.17",
"react-calendar": "^3.4.0",
"react-dropzone": "^11.4.2",
"react-hook-form": "^7.15.4",
"react-hot-toast": "^2.1.1",
"react-intersection-observer": "^8.32.1"
},
"resolutions": {
"eslint": "7.25.0"
},
"babelMacros": {
"twin": {
"preset": "emotion",
"config": "./tailwind.config.js"
}
}
}