-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
68 lines (68 loc) · 2.33 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
{
"scripts": {
"build": "npm run build:clean && node scripts/build.mjs",
"build:clean": "rm -rf packages/*/*/dist/",
"docs": "npx docsify-cli serve docs",
"lint": "eslint --ext .ts,.tsx,.mjs,.js --max-warnings 0 .",
"lint:fix": "npm run lint -- --fix",
"release": "npx changeset publish",
"start": "webpack-dev-server",
"test": "jest",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest",
"test:watch": "jest --watch",
"types:check": "tsc --noEmit && flow --max-warnings=0",
"types:watch": "tsc --noEmit --watch"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-export-namespace-from": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.14.5",
"@babel/preset-flow": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@babel/register": "^7.14.5",
"@babel/runtime": "^7.14.5",
"@changesets/cli": "^2.26.2",
"@testing-library/jest-dom": "^5.14.1",
"@types/jest": "^26.0.23",
"@types/react": "^16.14.8",
"@types/react-dom": "^16.9.13",
"@types/testing-library__jest-dom": "^5.14.0",
"@types/webpack": "^4.41.29",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-types": "^6.26.0",
"chalk": "^4.1.1",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"flow-bin": "^0.151.0",
"jest": "^26.6.3",
"prettier": "^2.3.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.3.3",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"workspaces": [
"packages/*/*"
]
}