-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
93 lines (93 loc) · 3.15 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
{
"name": "@solved-ac/ui-react",
"version": "0.7.0",
"description": "React component library used by solved.ac",
"author": "shiftpsh",
"license": "MIT",
"repository": "solved-ac/ui-react",
"homepage": "https://github.com/solved-ac/ui-react",
"main": "./dist/index.js",
"source": "./src/index.tsx",
"module": "./dist/index.modern.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.modern.mjs",
"require": "./dist/index.js"
}
},
"engines": {
"node": ">=10"
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "rimraf --no-glob ./dist && microbundle --no-compress --format modern,cjs --jsx React.createElement",
"start": "rimraf --no-glob ./dist && microbundle watch --no-compress --format modern,cjs --jsx React.createElement",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"postversion": "git push --tags && yarn publish . --tag $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\"",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"@emotion/react": ">=11",
"@emotion/styled": ">=11",
"@floating-ui/react": "^0.24.3",
"framer-motion": ">=6",
"react": ">=17",
"react-dom": ">=17"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.17.9",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@floating-ui/react": "^0.24.3",
"@tabler/icons-react": "^2.11.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^25.1.4",
"@types/node": "^12.12.38",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"babel-eslint": "^10.0.3",
"babel-plugin-file-loader": "^2.0.0",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"cross-env": "^7.0.2",
"eslint": "^8.15.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-standard": "^4.0.1",
"framer-motion": "^6.5.1",
"gh-pages": "^2.2.0",
"microbundle": "^0.15.0",
"npm-run-all": "^4.1.5",
"polished": "^4.2.2",
"prettier": "^2.6.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "^5.0.1",
"typescript": "^4.6.4"
}
}