-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.64 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.64 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
{
"name": "kwrush.github.io",
"version": "0.0.1",
"description": "Personal page",
"main": "index.js",
"scripts": {
"start": "webpack serve --config scripts/webpack.dev.js",
"build": "webpack --config scripts/webpack.prod.js",
"lint": "eslint . --ext .js --max-warnings 0",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/kwrush/kwrush.github.io.git"
},
"keywords": [
"three.js",
"GitHub Page"
],
"author": "Kai Wang(kwrush)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kwrush/kwrush.github.io/issues"
},
"homepage": "https://github.com/kwrush/kwrush.github.io#readme",
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-async-to-promises": "^0.8.15",
"css-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.2.0",
"prettier": "^2.3.2",
"style-loader": "^3.2.1",
"terser-webpack-plugin": "^5.1.4",
"webpack": "^5.51.1",
"webpack-cdn-plugin": "^3.3.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@tweenjs/tween.js": "^18.6.4",
"normalize.css": "^8.0.1",
"three": "^0.137.0"
}
}