-
-
Notifications
You must be signed in to change notification settings - Fork 180
/
package.json
104 lines (104 loc) · 3.32 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "nx run-many --target=build --all --parallel",
"build:force": "nx run-many --target=build --all --parallel --skip-nx-cache",
"build:docs": "nx run @pixi/react-docs:deploy",
"clean": "rimraf packages/*/dist packages/*/build",
"lint": "eslint .",
"prepare": "husky install",
"prerelease": "./scripts/checkReleaseBranch.mjs && npm run lint && npm run test:force && npm run build:force",
"release": "lerna publish --no-private",
"test": "nx run-many --target=test --all --parallel",
"test:force": "nx run-many --target=test --all --parallel --skip-nx-cache",
"test:ci": "nx run-many --target=test:ci --all --parallel",
"test:ci:force": "nx run-many --target=test:ci --all --parallel --skip-nx-cache",
"test:types": "nx run-many --target=test:types --all --parallel",
"test:types:force": "nx run-many --target=test:types --all --parallel --skip-nx-cache"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,mjs}": [
"eslint --cache --fix"
]
},
"resolutions": {
"get-pkg-repo": "4.1.1",
"hosted-git-info": "^2.1.4"
},
"dependencies": {
"@babel/runtime": "^7.14.8",
"@pixi/app": "^7.1.1",
"@pixi/constants": "^7.1.1",
"@pixi/core": "^7.1.1",
"@pixi/display": "^7.1.1",
"@pixi/extensions": "^7.1.1",
"@pixi/graphics": "^7.1.1",
"@pixi/math": "^7.1.1",
"@pixi/mesh": "^7.1.1",
"@pixi/mesh-extras": "^7.1.1",
"@pixi/particle-container": "^7.1.1",
"@pixi/sprite": "^7.1.1",
"@pixi/sprite-animated": "^7.1.1",
"@pixi/sprite-tiling": "^7.1.1",
"@pixi/text": "^7.1.1",
"@pixi/text-bitmap": "^7.1.1",
"@pixi/ticker": "^7.1.1",
"@react-spring/animated": "^9.6.1",
"@react-spring/types": "^9.6.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-reconciler": "0.29.0",
"react-spring": "^9.6.1"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.7",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@nrwl/nx-cloud": "latest",
"@pixi/eslint-config": "^4.0.1",
"@rollup/plugin-alias": "^4.0.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.2.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/jest": "^29.2.4",
"@types/react": "17.0.15",
"@types/react-dom": "17.0.9",
"@types/react-reconciler": "0.28.2",
"babel-jest": "^29.3.1",
"babel-plugin-module-resolver": "4.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.29.0",
"eslint-plugin-react": "^7.31.11",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-extended": "^3.2.0",
"jest-watch-typeahead": "^2.2.1",
"lerna": "^6.0.3",
"lint-staged": "^13.1.0",
"nx": "15.3.0",
"rimraf": "^3.0.2",
"rollup": "^3.7.0",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-visualizer": "^5.9.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}