-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
104 lines (104 loc) · 2.98 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
102
103
104
{
"name": "decoration",
"version": "0.0.1",
"description": "使用threejs基于TypeDom框架,仿照网上的例子写的室内装修的3D全景图。",
"main": "src/main.ts",
"scripts": {
"serve": "webpack-dev-server --mode=development --config ./build/webpack.config.js",
"build": "webpack --mode=production --config ./build/webpack.config.js",
"lib": "webpack --mode=none --config ./build/webpack.lib.config.js",
"js": "tsc",
"test": "jest",
"lint": "eslint src",
"lint-fix": "eslint src/**/*.{ts,js,tsx,jsx} --fix -o eslint_log.log",
"uml": "tsuml2 --glob type-dom/type-node/web-element/*.ts ",
"docs": "typedoc --entryPointStrategy expand ./src",
"coverage": "typescript-coverage-report"
},
"keywords": [
"室内装修3D全景图",
"threejs",
"typescript",
"webpack",
"TypeDom",
"type-dom",
"type-dom/svgs",
"type-dom/ui",
"Class based programming"
],
"author": "Xu",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@types/file-saver": "^2.0.3",
"@types/jest": "^29.5.5",
"@types/three": "^0.125.0",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^10.0.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.51.0",
"eslint-webpack-plugin": "^4.0.1",
"file-loader": "^6.2.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.7.0",
"less": "^4.1.3",
"less-loader": "^11.1.3",
"lint": "^1.1.2",
"mini-css-extract-plugin": "^2.7.6",
"sass": "^1.69.3",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.0",
"typedoc": "^0.25.2",
"typescript": "^5.1.3",
"typescript-coverage-report": "^0.8.0",
"url-loader": "^4.1.1",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
},
"dependencies": {
"normalize.css": "^8.0.1",
"rxjs": "^7.8.1",
"three": "^0.125.0",
"@type-dom/framework": "^0.0.8",
"@type-dom/svgs": "0.0.1",
"@type-dom/ui": "0.0.1"
},
"typeCoverage": {
"atLeast": 99,
"is": 99,
"cache": true,
"debug": true,
"detail": true,
"ignoreCatch": true,
"ignoreFiles": [
"demo1/*.ts",
"demo2/foo.ts"
],
"project": "tsconfig.json",
"strict": true,
"suppressError": true,
"update": true,
"ignoreUnread": true,
"ignoreNested": true,
"ignoreAsAssertion": true,
"ignoreTypeAssertion": true,
"ignoreNonNullAssertion": true,
"showRelativePath": true,
"historyFile": "typecoverage.json",
"noDetailWhenFailed": true
}
}