-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
121 lines (121 loc) · 3.51 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
{
"name": "react-expression-tree",
"version": "1.0.35",
"description": "Create expression trees",
"author": {
"name": "Tiziano Marsetti",
"email": "[email protected]"
},
"contributors": [
{
"name": "Andrea Gallidabino",
"email": "[email protected]"
},
{
"name": "Tiziano Marsetti",
"email": "[email protected]"
},
{
"name": "Joey Bevilacqua",
"email": "[email protected]"
},
{
"name": "Luca Chiodini",
"email": "[email protected]"
},
{
"name": "Matthias Hauswirth",
"email": "[email protected]"
}
],
"main": "dist/index.js",
"files": [
"dist"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"dependencies": {
"@fontsource/roboto-mono": "^4.2.0",
"fontfaceobserver": "^2.1.0",
"fscreen": "^1.1.0",
"meta-png": "^1.0.6",
"prop-types": "^15.7.2",
"react-konva": "^17.0.2-5"
},
"peerDependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"konva": "^8.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.11.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-url": "^5.0.1",
"@svgr/rollup": "^5.4.0",
"@testing-library/dom": "^7.22.3",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^10.4.9",
"@testing-library/user-event": "^12.1.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-import": "^1.13.3",
"babel-plugin-named-asset-import": "^0.3.6",
"babel-plugin-transform-imports": "^2.0.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-preset-react-app": "^9.1.2",
"classnames": "^2.2.6",
"cross-env": "^7.0.2",
"css-loader": "^4.2.1",
"enzyme": "^3.11.0",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-watch": "^7.0.0",
"file-loader": "^6.2.0",
"gh-pages": "^3.1.0",
"jasmine-expect": "^4.0.3",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^0.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"react": "^17.0.1",
"react-app-polyfill": "^2.0.0",
"react-dom": "^17.0.1",
"react-styleguidist": "^11.1.5",
"react-test-renderer": "^17.0.1",
"resolve-url-loader": "^3.1.2",
"source-map-loader": "^1.0.2",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.1.0",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.2.0",
"worker-loader": "^3.0.6"
},
"scripts": {
"start": "NODE_ENV=development BABEL_ENV=development styleguidist server --open",
"test": "jest",
"styleguide:build": "NODE_ENV=production BABEL_ENV=production styleguidist build",
"build": "NODE_ENV=production BABEL_ENV=production webpack --mode=production"
},
"keywords": [
"react",
"sandbox"
]
}