-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
50 lines (50 loc) · 1.52 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
{
"name": "phaser3-particle-editor",
"version": "1.0.0-beta3",
"private": true,
"main": "src/index.tsx",
"homepage": "http://koreezgames.github.io/phaser3-particle-editor",
"dependencies": {
"@material-ui/core": "^3.6.2",
"@material-ui/icons": "^3.0.1",
"@types/file-saver": "^2.0.0",
"@types/jszip": "^3.1.4",
"@types/react": "^16.7.17",
"@types/react-dom": "^16.0.11",
"file-saver": "^2.0.0",
"github-buttons": "git+https://github.com/ntkme/github-buttons.git",
"jszip": "^3.1.5",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"lodash.isplainobject": "^4.0.6",
"lodash.range": "^3.2.0",
"lodash.set": "^4.3.2",
"lodash.startcase": "^4.4.0",
"lodash.uniqueid": "^4.0.1",
"mobx": "^5.8.0",
"mobx-react": "^5.4.3",
"phaser": "^3.15.1",
"react": "latest",
"react-color": "^2.14.1",
"react-dom": "latest",
"react-scripts-ts": "^3.1.0"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"@types/lodash": "^4.14.119",
"@types/node": "^10.12.14",
"gh-pages": "^2.0.1",
"prettier": "^1.15.3",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.2"
},
"scripts": {
"start": "react-scripts-ts start",
"build": "react-scripts-ts build",
"autoformat": "prettier --config .prettierrc --write {src,test}{/,/**/}{*,*.test}.ts",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build --remote=upstream"
}
}