This repository has been archived by the owner on Aug 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
executable file
·79 lines (79 loc) · 2.18 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
{
"name": "three-vrm",
"version": "0.0.17",
"description": "VRM file loader for three.js.",
"license": "MIT",
"author": "remin",
"files": [
"lib",
"LICENSE"
],
"main": "lib/index.module.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/rdrgn/three-vrm.git"
},
"scripts": {
"start": "yarn start:module",
"start:module": "webpack-dev-server --config webpack.examples.config.js",
"start:script": "http-server ./",
"build": "rm -rf lib && webpack && tsc --emitDeclarationOnly",
"build:examples": "rm -rf dist && webpack --config webpack.examples.config.js",
"gh-pages": "yarn build:examples && gh-pages -d dist",
"test": "yarn lint",
"lint": "tslint --project tsconfig.json && tslint 'examples/**/*.ts?(x)'",
"fix": "tslint --fix --project tsconfig.json && tslint 'examples/**/*.ts?(x)'",
"prepack": "yarn lint && yarn build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"tslint --fix",
"git add"
]
},
"dependencies": {},
"devDependencies": {
"@types/node": "^12.0.8",
"@types/react": "^16.8.20",
"@types/react-dom": "^16.8.4",
"@types/react-resize-detector": "^4.0.1",
"css-loader": "^3.0.0",
"file-loader": "^4.0.0",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"mmd-parser": "^1.0.3",
"prettier": "^1.18.2",
"raw-loader": "^3.0.0",
"react": "^16.8.6",
"react-dat-gui": "^3.0.0",
"react-dom": "^16.8.6",
"react-dropzone": "^10.1.5",
"react-resize-detector": "^4.2.0",
"react-spinners": "^0.5.4",
"style-loader": "^0.23.1",
"three": "^0.105.2",
"ts-loader": "^6.0.2",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.17.0",
"tslint-loader": "^3.5.4",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.0.0",
"typescript": "^3.5.2",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.1",
"webpack-merge": "^4.2.1"
},
"peerDependencies": {
"three": "^0.103.0"
}
}