-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1.09 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
{
"name": "react-dynamic-loadable",
"private": true,
"description": "A higher order component for loading components with dynamic imports.",
"workspaces": [
"packages/*",
"example/*"
],
"scripts": {
"start": "yarn workspace react-dynamic-loadable start",
"watch": "yarn workspace react-dynamic-loadable tsbb watch --target react",
"build": "yarn workspace react-dynamic-loadable tsbb build --target react",
"prepare": "npm run lint && npm run build",
"lint": "cross-env NODE_ENV=production eslint packages/core/src --ext jsx"
},
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/react-dynamic-loadable.git"
},
"jest": {},
"author": "Kenny Wong <wowohoo@qq.com> (https://github.com/jaywcjlove)",
"license": "MIT",
"devDependencies": {
"cross-env": "7.0.3",
"babel-eslint": "10.1.0",
"eslint": "7.31.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"tsbb": "2.2.1"
}
}