-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.86 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
{
"private": true,
"workspaces": [
"packages/*",
"docs"
],
"scripts": {
"start:react-maptalks": "cd packages/react-maptalks && yarn run start",
"start:react-core": "cd packages/core && yarn run start",
"start:react-maptalks-three": "cd packages/react-maptalks-three && yarn run start",
"start:doc": "cd docs && yarn run start",
"build:react-maptalks": "cd packages/react-maptalks && yarn run build",
"build:react-maptalks-three": "cd packages/react-maptalks-three && yarn run build",
"build:react-core": "cd packages/core && yarn run build",
"build:doc": "cd docs && yarn run build",
"build": "yarn run build:react-core && yarn run build:react-maptalks && yarn run build:react-maptalks-three",
"deploy:doc": "deploy.sh",
"eslint:fix": "eslint . --ext .js,.ts,.jsx,.tsx --fix",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.13.0",
"@react-maptalks/core": "0.0.1",
"@react-maptalks/three": "0.0.1",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.2",
"@rollup/plugin-typescript": "^8.2.1",
"@testing-library/react": "^12.0.0",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/three": "^0.130.0",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.29.1",
"babel-jest": "^27.0.6",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.6",
"maptalks": "^0.49.5",
"maptalks.three": "^0.15.4",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.49.0",
"three": "^0.130.1",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
}
}