-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
70 lines (70 loc) · 2.5 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
{
"name": "_cesium_demos",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/NichijouCC/cesium_demos.git",
"author": "dongbo <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.7.2",
"@types/copy-webpack-plugin": "^5.0.0",
"@types/html-webpack-plugin": "^3.2.1",
"@types/react-dom": "^16.9.9",
"@types/react-router-dom": "^5.1.3",
"@types/webpack": "^4.41.0",
"@types/webpack-dev-server": "^3.4.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.5",
"core-js": "^3.4.1",
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"eslint": "^7.15.0",
"eslint-plugin-react": "^7.21.5",
"file-loader": "^6.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"less": "^4.0.0",
"less-loader": "^7.2.1",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"ora": "^4.0.3",
"style-loader": "^1.0.0",
"terser-webpack-plugin": "^2.2.1",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^3.7.2",
"url-loader": "^2.2.0",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^4.1.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@mtgoo/ctool": "^0.0.16",
"antd": "^4.14.0",
"cesium": "^1.79.1",
"dat.gui": "^0.7.7",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.2.0",
"reflect-metadata": "^0.1.13"
},
"scripts": {
"start": "cross-env NODE_ENV=development APP_ENV=dev node ./config/run.js",
"choose": "cross-env NODE_ENV=development APP_ENV=dev node ./config/run.js",
"build": "cross-env NODE_ENV=production APP_ENV=prod node ./config/run.js",
"build:test": "cross-env NODE_ENV=production APP_ENV=test node ./config/run.js",
"build:analyze": "cross-env NODE_ENV=production BUILD=analyze node ./config/run.js -- --env.addons=bundleanalyzer",
"lint": "eslint --fix src/*.{tsx,js} --ignore-pattern node_modules/"
}
}