forked from brianzinn/react-babylonjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.73 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
116
117
118
119
120
121
122
{
"name": "react-babylonjs",
"version": "3.0.15",
"description": "React for Babylon.js",
"homepage": "https://brianzinn.github.io/react-babylonjs/",
"keywords": [
"3d",
"webgl",
"react",
"babylon",
"babylon.js",
"@babylonjs",
"react-reconciler"
],
"main": "dist/react-babylonjs.js",
"module": "dist/react-babylonjs.js",
"esnext": "dist/react-babylonjs.js",
"type": "module",
"typings": "dist/react-babylonjs.d.ts",
"files": [
"dist"
],
"author": "Brian Zinn <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/brianzinn/react-babylonjs/"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "tslint -t codeFrame 'src/**/*.ts'",
"prebuild": "rimraf dist",
"build": "cross-env NODE_ENV=production rollup -c",
"start": "tsc-watch --onSuccess \"rollup -c\"",
"deploy-docs": "ts-node tools/gh-pages-publish",
"storybook": "start-storybook -p 6006 -s ./storyboard-site",
"prestorybook": "npm run build",
"build-storybook": "build-storybook -o storybook-static -s ./storyboard-site",
"generate-code": "ts-node -P tsconfig.generate.json tools/generate-code",
"unit-test": "cross-env TS_NODE_PROJECT=\"tsconfig.test.json\" mocha --require ts-node/register --require esm \"test/**/*.spec.{js,jsx,ts,tsx}\"",
"test": "npm run unit-test",
"test:coverage": "nyc --reporter=lcov --reporter=text-summary npm run test"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write --no-semi --print-width 160"
]
},
"devDependencies": {
"@babel/core": "7.12.7",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babylonjs/core": "^5.0.0-alpha.24",
"@babylonjs/gui": "^5.0.0-alpha.24",
"@babylonjs/inspector": "^5.0.0-alpha.24",
"@babylonjs/loaders": "^5.0.0-alpha.24",
"@babylonjs/materials": "^5.0.0-alpha.24",
"@babylonjs/procedural-textures": "^5.0.0-alpha.24",
"@inlet/react-pixi": "^6.5.2",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-typescript": "^6.1.0",
"@storybook/addon-actions": "^6.1.9",
"@storybook/addon-links": "^6.1.9",
"@storybook/addon-storysource": "^6.0.27",
"@storybook/addons": "^6.1.9",
"@storybook/react": "^6.1.9",
"@storybook/source-loader": "^6.1.9",
"@storybook/theming": "^6.1.9",
"@types/lodash.camelcase": "^4.3.6",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.10",
"@types/react": "^17.0.0",
"@types/react-reconciler": "^0.18.0",
"@types/sinon": "^9.0.10",
"babel-loader": "^8.2.2",
"cannon": "^0.6.2",
"chroma-js": "^2.1.0",
"cross-env": "^7.0.0",
"earcut": "^2.2.2",
"esm": "^3.2.25",
"github-release-notes": "0.17.2",
"gsap": "^3.6.1",
"honeycomb-grid": "^3.1.7",
"lerp": "^1.0.3",
"lint-staged": "^10.5.2",
"lodash.camelcase": "^4.3.0",
"mocha": "8.1.3",
"nyc": "^15.1.0",
"pixi-projection": "^0.3.11",
"pixi.js": "^5.2.1",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-babylon-spring": "^1.0.2",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.0.6",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"sinon": "^9.2.4",
"storybook": "^6.1.9",
"ts-morph": "^10.1.0",
"ts-node": "^9.1.1",
"tsc-watch": "^4.2.9",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^9.0.0",
"typedoc": "^0.20.14",
"typedoc-plugin-markdown": "^3.4.0",
"typescript": "4.1.2"
},
"peerDependencies": {
"@babylonjs/core": "5.x",
"@babylonjs/gui": "5.x",
"react": ">=17",
"react-dom": ">=17"
},
"dependencies": {
"react-reconciler": "^0.26.1"
}
}