-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.99 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
105
106
{
"name": "dnd-player",
"version": "0.1.0",
"private": true,
"homepage": "https://dnd-player.com",
"dependencies": {
"@inlet/react-pixi": "0.6.0",
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"@mdi/js": "^3.6.95",
"@mdi/react": "^1.1.0",
"@pixi/filter-outline": "^3.0.3",
"@sentry/browser": "5.1.1",
"@types/jest": "^24.0.11",
"@types/node": "^11.13.4",
"@types/react": "^16.8.13",
"@types/react-dom": "^16.8.4",
"@types/react-transition-group": "^2.9.1",
"connected-react-router": "^6.4.0",
"firebase": "^5.9.4",
"gh-pages": "^2.0.1",
"history": "^4.9.0",
"howler": "^2.1.2",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"material-ui-color-picker": "^3.2.0",
"node-sass": "^4.12.0",
"pixi-ease": "^1.3.0",
"pixi-filters": "^2.7.1",
"pixi-viewport": "~3.23.2",
"pixi.js": "5.0.4",
"react": "^16.8.6",
"react-dnd": "^7.4.5",
"react-dnd-html5-backend": "^7.4.4",
"react-dom": "^16.8.6",
"react-hotkeys": "2.0.0-pre8",
"react-markdown": "^4.0.8",
"react-redux": "^7.0.2",
"react-rnd": "^9.1.2",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-scripts": "2.1.8",
"react-select": "^2.4.3",
"react-transition-group": "^4.0.0",
"redux": "^4.0.1",
"redux-persist": "^5.10.0",
"redux-saga": "^1.0.2",
"redux-saga-firebase": "^0.15.0",
"reselect": "^4.0.0",
"rpg-dice-roller": "^3.0.1",
"string-math": "^1.2.1",
"typescript": "^3.4.3",
"uuid": "^3.3.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "react-scripts build && cp CNAME ./build",
"deploy": "gh-pages -d build",
"enableSentry": "sed -i '/^\\/\\/ SENTRYINITHERE/i Sentry.init({dsn: \"https://04f41a05077c4badbe2fb7c804604233@sentry.dnd-player.com/2\"});' src/index.tsx"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@types/pixi.js": "^4.8.7",
"@types/react-redux": "^7.0.6",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.6.0",
"babel-eslint": "9.x",
"coveralls": "^3.0.3",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint-config-prettier": "^4.1.0",
"eslint-config-react-app": "^3.0.8",
"eslint-plugin-flowtype": "2.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "7.x",
"jest-canvas-mock": "^2.1.0",
"jest-each": "^24.7.1",
"prettier": "^1.17.0",
"react-hot-loader": "^4.8.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
]
},
"jest": {}
}