forked from williamclot/character_creator
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
86 lines (86 loc) · 2.59 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
{
"name": "@myminifactory/mmf-customizer",
"version": "0.16.6",
"private": false,
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"/dist"
],
"scripts": {
"test": "echo \"You don't have any tests yet..........\" && exit 0",
"check-types": "tsc",
"lint": "eslint './src/**/*.{js,ts,tsx}'",
"lib": "rollup -c",
"lib:watch": "rollup -cw",
"prepare": "npm run lint && npm run check-types && npm run test && npm run lib"
},
"dependencies": {
"@babel/runtime": "^7.24.6",
"@material-ui/core": "^4.9.5",
"axios": "^0.18.1",
"classnames": "^2.2.6",
"material-ui-chip-input": "^1.1.0",
"three": "^0.114.0",
"three-gltf-loader": "^1.111.0",
"three-stl-loader": "^1.0.6",
"throttle-debounce": "^2.1.0",
"toposort": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@rollup/plugin-image": "^2.0.4",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/axios": "^0.14.0",
"@types/classnames": "^2.2.10",
"@types/react": "^16.9.23",
"@types/throttle-debounce": "^2.1.0",
"@types/toposort": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"prettier": "^1.19.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"rollup": "^1.32.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-postcss": "^2.2.0",
"sass": "^1.77.4",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react": ">=16.6.3 <17.0.0",
"react-dom": ">=16.6.3 <17.0.0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"description": "This project is a React component that is imported into the [MyMiniFactory](https://www.myminifactory.com/) website.",
"repository": {
"type": "git",
"url": "git+https://github.com/MyMiniFactory/CharacterCreator.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MyMiniFactory/CharacterCreator/issues"
},
"homepage": "https://github.com/MyMiniFactory/CharacterCreator#readme"
}