-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathpackage.json
91 lines (91 loc) · 3.14 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
{
"name": "react-pixi-fiber",
"version": "1.0.6",
"description": "React Fiber renderer for PixiJS",
"main": "index.js",
"umd:main": "index.umd.js",
"module": "index.es.js",
"jsnext:main": "index.es.js",
"author": "Michal Ochman",
"license": "MIT",
"repository": "github:michalochman/react-pixi-fiber",
"typings": "./index.d.ts",
"files": [
"LICENSE",
"README.md",
"index.d.ts",
"index.es.js",
"index.js",
"index.umd.js",
"react-pixi-alias.js",
"cjs/",
"es/",
"umd/",
"src/"
],
"sideEffects": false,
"dependencies": {
"fbjs": "^3.0.0",
"react-reconciler": "^0.26.2"
},
"peerDependencies": {
"pixi.js": ">=4.4.0",
"prop-types": ">=15.0.0",
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@types/react": "^17.0.4",
"babel-eslint": "^10.1.0",
"babel-plugin-rewire": "^1.2.0",
"canvas": "^2.9.1",
"codecov": "^3.7.2",
"cross-env": "^7.0.2",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"jest": "^26.6.3",
"jest-webgl-canvas-mock": "^0.2.3",
"pixi.js": "^6.0.2",
"prettier": "^2.0.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rollup": "^2.75.6",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-visualizer": "^5.6.0",
"typescript": "^4.3.5"
},
"scripts": {
"build": "npm run build:prod && npm run build:dev",
"build:dev": "cross-env NODE_ENV=development rollup -c config/rollup.config.js",
"build:prod": "cross-env NODE_ENV=production rollup -c config/rollup.config.js",
"build:alias:dev": "cross-env NODE_ENV=development rollup -c config/rollup.config.js --environment entry:alias",
"build:alias:prod": "cross-env NODE_ENV=production rollup -c config/rollup.config.js --environment entry:alias",
"build:index:dev": "cross-env NODE_ENV=development rollup -c config/rollup.config.js --environment entry:index",
"build:index:prod": "cross-env NODE_ENV=production rollup -c config/rollup.config.js --environment entry:index",
"eslint": "eslint src",
"eslint-check": "eslint --print-config .eslintrc.json | eslint-config-prettier-check",
"prepublishOnly": "npm run test && npm run build",
"test": "npm run test:dev && npm run test:prod",
"test:cov": "npm run test:dev -- --coverage && npm run test:prod -- --coverage && node mapCoverage.js",
"test:dev": "jest -c config/jest.dev.json",
"test:prod": "jest -c config/jest.prod.json",
"test:ts": "tsc -p tsconfig.json"
}
}