forked from pixijs/pixi-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 4.04 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
123
124
125
{
"name": "@inlet/react-pixi",
"version": "6.6.5",
"description": "Write PixiJS applications using React declarative style.",
"main": "index.js",
"umd:main": "umd.js",
"module": "module.js",
"jsnext:main": "module.js",
"author": "Patrick Brouwer <[email protected]>",
"license": "MIT",
"scripts": {
"docz:dev": "rimraf ./docs && docz dev",
"docz:build": "rimraf ./docs && yarn build:prod && docz build",
"eslint": "eslint .",
"build:watch": "cross-env FORMAT=umd NODE_ENV=development rollup -c --watch",
"build:dev": "cross-env NODE_ENV=development rollup -c",
"build:prod": "cross-env NODE_ENV=production rollup -c",
"build": "rimraf ./dist && npm run build:dev && npm run build:prod",
"test": "jest --silent",
"test:watch": "jest --silent --watch",
"prepack": "if-env CI=true && echo \"skip build\" || (npm run test && npm run eslint && npm run build)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inlet/react-pixi.git"
},
"files": [
"dist/",
"animated/",
"legacy/",
"LICENSE",
"index.d.ts",
"index.js",
"umd.js",
"module.js"
],
"typings": "./index.d.ts",
"devDependencies": {
"@babel/cli": "7.14.8",
"@babel/core": "7.14.8",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-decorators": "7.14.5",
"@babel/plugin-proposal-do-expressions": "7.14.5",
"@babel/plugin-proposal-export-default-from": "7.14.5",
"@babel/plugin-proposal-export-namespace-from": "7.14.5",
"@babel/plugin-proposal-function-bind": "7.14.5",
"@babel/plugin-proposal-function-sent": "7.14.5",
"@babel/plugin-proposal-json-strings": "7.14.5",
"@babel/plugin-proposal-logical-assignment-operators": "7.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.14.5",
"@babel/plugin-proposal-numeric-separator": "7.14.5",
"@babel/plugin-proposal-optional-chaining": "7.14.5",
"@babel/plugin-proposal-pipeline-operator": "7.14.8",
"@babel/plugin-proposal-throw-expressions": "7.14.5",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/plugin-transform-runtime": "7.14.5",
"@babel/preset-env": "7.14.9",
"@babel/preset-react": "7.14.5",
"@babel/runtime": "7.14.8",
"@rollup/plugin-alias": "3.1.5",
"@testing-library/react": "12.0.0",
"@types/jest": "26.0.24",
"@types/react": "17.0.15",
"@types/react-dom": "17.0.9",
"@types/react-reconciler": "0.26.3",
"babel-core": "7.0.0-beta.3",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"babel-plugin-module-resolver": "4.1.0",
"canvas": "2.8.0",
"cross-env": "7.0.3",
"docz": "2.3.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.24.0",
"if-env": "1.0.4",
"jest": "26.6.3",
"jest-webgl-canvas-mock": "0.2.3",
"lodash.isnil": "4.0.0",
"lodash.times": "4.3.2",
"performance-now": "2.1.0",
"pixi.js": "6.1.0",
"prettier": "2.3.2",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-reconciler": "0.26.2",
"react-spring": "9.2.4",
"react-test-renderer": "17.0.2",
"rimraf": "3.0.2",
"rollup": "2.55.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-filesize": "9.1.1",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-terser": "7.0.2",
"typescript": "4.3.5"
},
"peerDependencies": {
"pixi.js": "^6.0.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"jest": {
"collectCoverage": false,
"roots": [
"./test"
],
"setupFiles": [
"jest-webgl-canvas-mock",
"<rootDir>/test/bootstrap.js",
"<rootDir>/test/__mocks__/matchMediaMock.js"
]
},
"resolutions": {
"get-pkg-repo": "4.1.1",
"hosted-git-info": "^2.1.4"
}
}