-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
101 lines (101 loc) · 3.22 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "cesium-heatmap-es6",
"main": "dist/cesium-heatmap-es6.umd.js",
"module": "dist/index.js",
"typings": "lib/index.d.ts",
"version": "0.8.0",
"private": false,
"dependencies": {
"cesium": "^1.102.0"
},
"files": [
"dist",
"docs",
"lib",
"README.md",
"package.json",
"LICENSE",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cesium-plugin/cesium-heatmap-es6.git"
},
"bugs": {
"url": "https://github.com/cesium-plugin/cesium-heatmap-es6/issues"
},
"scripts": {
"test": "react-scripts test",
"eject": "react-scripts eject",
"a": "npm install --registry https://registry.npm.taobao.org",
"start": "node --max-old-space-size=6000 node_modules/cross-env/src/bin/cross-env.js PORT=5557 craco start",
"build": "rimraf ./build && cross-env GENERATE_SOURCEMAP=false craco build",
"ts2js": "tsc ./src/source/index.ts --target es2016",
"release": "npm run doc & webpack --config ./webpack.config.release.js & npm run copyjs",
"copyjs": "npm run ts2js & webpack --config ./webpack.config.copyjs.js",
"doc": "npx typedoc ./src/source/index.ts"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/preset-env": "^7.14.8",
"@babel/preset-react": "^7.14.5",
"@craco/craco": "6.2.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/jquery": "^3.5.5",
"@types/js-md5": "^0.4.2",
"@types/node": "^12.0.0",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-router-dom": "^5.1.7",
"@types/sortablejs": "^1.10.7",
"@types/uuid": "^8.3.1",
"antd": "^4.18.2",
"awesome-typescript-loader": "3.5.0",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"browser-sync": "^2.18.11",
"browser-sync-spa": "^1.0.3",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^5.0.1",
"copy-webpack-plugin": "6.4.1",
"craco-less": "^1.18.0",
"cross-env": "^7.0.3",
"gulp": "^4.0.2",
"gutil": "^1.6.4",
"html-loader": "0.5.5",
"less": "^4.1.1",
"markdown-loader": "5.1.0",
"mv": "^2.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-overlay": "6.0.9",
"react-router-dom": "^5.2.1",
"react-scripts": "4.0.3",
"typedoc": "^0.22.11",
"typescript": "4.5.4",
"uglifyjs-webpack-plugin": "^1.3.0",
"web-vitals": "^1.0.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.9.1"
}
}