-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.83 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.83 KB
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
{
"name": "esium-react",
"version": "1.0.0",
"private": true,
"homepage": ".",
"scripts": {
"postinstall": "patch-package",
"start": "craco start",
"dev": "craco start",
"build": "craco build",
"test": "craco test",
"lint": "eslint --ext tsx,ts,js,jsx src",
"lint-fix": "eslint --fix --ext tsx,ts,js,jsx src",
"prettier": "prettier -c --write '**/*'",
"precommit": "lint-staged"
},
"dependencies": {
"@hot-loader/react-dom": "^16.14.0",
"antd": "^3.26.20",
"cesium": "^1.81.0",
"cesium-tdt": "^1.1.0",
"memoize-one": "^5.2.1",
"mobx": "^5.15.7",
"mobx-react": "^6.3.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"resium": "^1.13.1"
},
"browserslist": {
"production": [
"last 2 version",
"> 1%",
"ie >= 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"src/**/*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write"
]
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.14.2",
"@craco/craco": "^5.9.0",
"@types/jest": "^26.0.23",
"@types/memoize-one": "^5.1.2",
"@types/node": "^14.17.0",
"@types/react": "^16.14.6",
"@types/react-dom": "^16.9.13",
"babel-plugin-import": "^1.13.3",
"craco-cesium": "^1.2.0",
"craco-plugin-react-hot-reload": "^0.1.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"patch-package": "^6.4.7",
"prettier": "^2.3.0",
"react-hot-loader": "^4.13.0",
"react-scripts": "^3.4.4",
"typescript": "^3.9.9"
}
}