-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.43 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
{
"name": "pixi-example",
"version": "1.0.0",
"description": "Example of using PIXI engine along with React",
"private": true,
"scripts": {
"start": "webpack-dev-server --open --mode development",
"lint": "eslint ./src",
"fix-prettier": "prettier --write \"src/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ogard/pixi-example.git"
},
"keywords": [
"pixi",
"react-pixi",
"tween"
],
"author": "Drago Odalovic",
"license": "MIT",
"bugs": {
"url": "https://github.com/ogard/pixi-example/issues"
},
"homepage": "https://github.com/ogard/pixi-example#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.1",
"eslint": "^5.8.0",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.14.3",
"style-loader": "^0.23.1",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"pixi.js": "^4.8.2",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-pixi": "^0.9.19"
}
}