-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.92 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
{
"name": "tobui",
"version": "1.0.0",
"description": "React component library",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"docs": "webpack-dev-server --mode development --hot",
"check-types": "tsc",
"test": "cypress run --component"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@cypress/webpack-dev-server": "^2.0.0",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/react": "^16.9.50",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.24",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"babel-loader": "^8.2.2",
"css-loader": "^4.3.0",
"css-minimizer-webpack-plugin": "^4.0.0",
"cypress": "^10.4.0",
"eslint": "^7.32.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^1.6.2",
"raw-loader": "^4.0.2",
"react-ace": "^10.1.0",
"react-dom": "^18.1.0",
"react-router-dom": "^6.3.0",
"rollup": "^2.69.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"rollup-plugin-url": "^3.0.1",
"typescript": "^4.0.3",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.2",
"yalc": "^1.0.0-pre.53"
},
"dependencies": {
"polished": "^4.1.4"
},
"peerDependencies": {
"@mdi/js": "^7.2.96",
"@mdi/react": "^1.6.1",
"react": "^18.2.0",
"styled-components": "^5.3.5"
}
}