-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
115 lines (115 loc) · 3.36 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
105
106
107
108
109
110
111
112
113
114
115
{
"name": "rubikscube",
"version": "1.0.0",
"description": "online Rubik's cube for beginners",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"test:unit": "jest --coverage",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve",
"dev": "webpack server --mode=development --hot --progress",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chenyxuan/rubikscube.git"
},
"keywords": [
"Rubik's Cube",
"3D Visualization",
"Human-computer Interaction"
],
"author": "Yuxuan Chen",
"license": "MIT",
"bugs": {
"url": "https://github.com/chenyxuan/rubikscube/issues"
},
"homepage": "https://github.com/chenyxuan/rubikscube#readme",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-decorators": "^7.16.4",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.3",
"@types/three": "^0.133.1",
"@types/webpack-env": "^1.16.3",
"@vue/test-utils": "^1.3.0",
"@webpack-cli/generators": "^2.4.1",
"babel-jest": "^27.3.1",
"babel-preset-env": "^1.7.0",
"babel-preset-typescript-vue": "^1.1.1",
"babel-preset-vue": "^2.0.2",
"clean-webpack-plugin": "^4.0.0",
"clipboard": "^2.0.8",
"css-loader": "^6.5.0",
"cubejs": "^1.3.2",
"file-loader": "^6.2.0",
"html-loader-jest": "^0.2.1",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"jest-css-modules-transform": "^4.3.0",
"jsdom-global": "^3.0.2",
"material-design-icons": "^3.0.1",
"mini-css-extract-plugin": "^2.4.3",
"prettier": "^2.4.1",
"source-map-loader": "^3.0.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.2.4",
"text-loader": "^0.0.1",
"three": "^0.134.0",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"vue": "^2.6.14",
"vue-class-component": "^7.2.6",
"vue-jest": "^3.0.7",
"vue-loader": "^15.9.8",
"vue-property-decorator": "^9.1.2",
"vue-slider-component": "^3.2.15",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.14",
"vuetify": "^2.5.6",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^3.11.2"
},
"jest": {
"testEnvironment": "jsdom",
"verbose": true,
"moduleFileExtensions": [
"js",
"ts",
"json",
"vue",
"html"
],
"moduleNameMapper": {
"\\.(css|sass)$": "identity-obj-proxy"
},
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.[t|j]sx?$": "babel-jest",
"^.+\\.html?$": "html-loader-jest",
"^.+\\.(css|styl|less|sass|scss)$": "jest-css-modules-transform"
},
"testURL": "http://localhost/",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"coverageDirectory": "coverage",
"coverageProvider": "v8",
"coverageThreshold": {
"global": {
"branches": 73,
"functions": 90,
"lines": 80,
"statements": 80
}
}
}
}