forked from austencm/phaser-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.32 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.32 KB
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
{
"version": "1.0.0",
"name": "phaser-plugins",
"description": "Unofficial open source plugin catalog for the Phaser framework.",
"license": "MIT",
"main": "n/a",
"scripts": {
"develop": "yarn run clean && gatsby develop",
"build": "yarn run clean && gatsby build --prefix-paths",
"deploy": "yarn run clean && gatsby build --prefix-paths && gh-pages -d public",
"clean": "rimraf .cache public",
"lint:js": "eslint --cache --ext .js,.jsx --ignore-pattern public .",
"lint:scss": "stylelint \"src/**/*.scss\"",
"lint": "concurrently \"yarn run lint:js\" \"yarn run lint:scss\"",
"test": "jest --config ./tests/jest-config.js",
"test:coverage": "jest --coverage --config ./tests/jest-config.js",
"test:watch": "jest --watch --config ./tests/jest-config.js"
},
"repository": "https://github.com/austencm/phaser-plugins",
"homepage": "https://phaserplugins.com",
"author": "Austen Morgan <[email protected]>",
"license": "MIT",
"keywords": [
"phaser",
"phaser3",
"phaser2",
"plugin",
"canvas",
"game",
"gatsby",
"graphql",
"static",
"react"
],
"dependencies": {
"@dschau/gatsby-source-github": "^0.0.1",
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.2",
"bluebird": "^3.5.2",
"classnames": "^2.2.6",
"codecov": "^3.1.0",
"gatsby": "^2.18.12",
"gatsby-link": "^2.0.10",
"gatsby-plugin-alias-imports": "^1.0.5",
"gatsby-plugin-catch-links": "^2.0.10",
"gatsby-plugin-favicon": "^3.1.5",
"gatsby-plugin-feed": "^2.0.13",
"gatsby-plugin-google-analytics": "^2.0.13",
"gatsby-plugin-local-search": "1.0.0",
"gatsby-plugin-manifest": "^2.0.17",
"gatsby-plugin-material-ui": "^1.2.4",
"gatsby-plugin-offline": "^2.0.22",
"gatsby-plugin-react-helmet": "^3.0.6",
"gatsby-plugin-robots-txt": "^1.4.0",
"gatsby-plugin-sass": "^2.0.10",
"gatsby-plugin-sharp": "^2.0.20",
"gatsby-plugin-sitemap": "^2.0.5",
"gatsby-remark-images": "^3.0.3",
"gatsby-source-filesystem": "^2.0.20",
"gatsby-transformer-sharp": "^2.1.13",
"invariant": "^2.2.4",
"lodash": "^4.17.11",
"moment": "^2.23.0",
"node-sass": "^4.11.0",
"normalize-scss": "^7.0.1",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-helmet": "^5.2.0",
"react-lunr": "^0.5.0"
},
"devDependencies": {
"@babel/core": "7.3.4",
"@babel/plugin-proposal-class-properties": "7.3.4",
"@babel/plugin-proposal-optional-chaining": "7.2.0",
"@babel/preset-env": "7.3.4",
"@babel/preset-react": "7.0.0",
"autoprefixer": "9.4.9",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "23.6.0",
"browserslist": "4.4.2",
"concurrently": "4.1.0",
"dotenv": "^6.2.0",
"eslint": "5.15.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jest": "22.3.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.12.4",
"eslint-watch": "4.0.2",
"gh-pages": "2.0.1",
"identity-obj-proxy": "3.0.0",
"jest": "23.6.0",
"jest-cli": "23.6.0",
"lost": "8.3.1",
"postcss-pxtorem": "4.0.1",
"react-test-renderer": "16.8.3",
"rimraf": "2.6.3",
"stylelint": "9.10.1",
"stylelint-config-recommended-scss": "3.2.0",
"stylelint-scss": "3.5.4"
}
}