This repository has been archived by the owner on Jun 1, 2021. It is now read-only.
forked from PaulLeCam/react-leaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.26 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
{
"name": "react-leaflet-repository",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint './packages/**/*.ts' './packages/**/*.tsx'",
"build:core": "(cd packages/core && yarn run build)",
"build:react-leaflet": "(cd packages/react-leaflet && yarn run build)",
"build:website": "(cd packages/website && yarn run build)",
"build": "yarn run build:core && yarn run build:react-leaflet && yarn run build:website",
"test:core": "(cd packages/core && yarn test)",
"test:react-leaflet": "(cd packages/react-leaflet && yarn test)",
"test": "yarn run test:core && yarn run test:react-leaflet",
"start:core": "(cd packages/core && yarn start)",
"start:react-leaflet": "(cd packages/react-leaflet && yarn start)",
"start": "yarn run lint && yarn run start:core && yarn run start:react-leaflet"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-transform-proto-to-assign": "^7.12.1",
"@babel/plugin-transform-strict-mode": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@testing-library/react": "^11.1.0",
"@testing-library/react-hooks": "^3.4.2",
"@types/jest": "^26.0.15",
"@types/leaflet": "^1.5.19",
"@types/react": "^16.9.55",
"@types/react-dom": "^16.9.9",
"@types/warning": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^26.6.1",
"cross-env": "^7.0.2",
"del-cli": "^3.0.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.1",
"leaflet": "^1.7.1",
"prettier": "^2.0.5",
"prettier-eslint": "^11.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"typescript": "^4.0.5"
}
}