-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.33 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.33 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
{
"name": "mito",
"homepage": "./",
"version": "0.1.0",
"private": true,
"main": "./indexElectron.js",
"dependencies": {
"@blueprintjs/core": "^3.24.0",
"@types/classnames": "^2.2.7",
"@types/d3-ease": "^1.0.9",
"@types/d3-scale": "^2.1.1",
"@types/gtag.js": "^0.0.3",
"@types/howler": "^2.1.2",
"@types/jest": "24.0.13",
"@types/lodash": "^4.14.149",
"@types/node": "12.0.3",
"@types/pathfinding": "^0.0.2",
"@types/plotly.js": "^1.44.11",
"@types/react": "16.8.19",
"@types/react-dom": "16.8.4",
"@types/react-router-dom": "^5.1.0",
"@types/react-transition-group": "^4.2.3",
"@types/seedrandom": "^2.4.28",
"@types/stats.js": "^0.17.0",
"@types/uuid": "^3.4.5",
"classnames": "^2.2.6",
"d3-ease": "^1.0.5",
"d3-scale": "^3.1.0",
"electron": "^8.0.2",
"gh-pages": "^2.0.1",
"howler": "^2.1.3",
"immer": "^6.0.3",
"localforage": "^1.7.3",
"lodash": "^4.17.15",
"node-sass": "^4.12.0",
"normalize.css": "^8.0.1",
"pathfinding": "^0.4.18",
"query-string": "^6.5.0",
"react": "^16.8.6",
"react-beautiful-dnd": "^13.0.0",
"react-dom": "^16.8.6",
"react-icons": "^3.8.0",
"react-router-dom": "^5.1.1",
"react-scripts": "^3.3.0",
"react-transition-group": "^4.3.0",
"reselect": "^4.0.0",
"seedrandom": "^3.0.5",
"serializr": "^1.5.3",
"simplex-noise": "^2.4.0",
"stats.js": "^0.17.0",
"three": "^0.112.0",
"typescript": "3.7.5",
"uuid": "^3.3.3"
},
"scripts": {
"predeploy": "yarn build",
"deploy": "gh-pages -d build",
"start-electron": "set ELECTRON_START_URL=http://localhost:3000 && electron .",
"start": "react-scripts start",
"build": "react-scripts build",
"lint": "eslint --fix \"src/**/*.{ts,tsx}\"",
"test": "react-scripts test",
"eject": "react-scripts eject",
"pretter": "prettier --write \"src/**/*.{ts,tsx,scss}\""
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/react-beautiful-dnd": "^12.1.2",
"eslint-plugin-prettier": "^3.1.1",
"prettier": "^1.18.2"
}
}