-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.62 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "wyrmswrath",
"version": "1.3.0-unstable",
"description": "",
"main": "index.js",
"scripts": {
"start": "parcel --no-hmr src/index.html",
"test": "npm run format:check && npm run lint:check && npm run test:types",
"test:types": "tsc",
"build": "parcel build src/index.html --public-url ./",
"lint:check": "eslint src/**/*.{ts,tsx}",
"lint:fix": "eslint --fix src/**/*.{ts,tsx}",
"format:check": "prettier --check src/**/*.{ts,tsx}",
"format:fix": "prettier --write src/**/*.{ts,tsx}"
},
"author": "",
"license": "GPL",
"browserslist": [
"last 2 chrome versions",
"last 2 firefox versions"
],
"prettier": {
"trailingComma": "all",
"quoteProps": "consistent"
},
"eslintConfig": {
"extends": [
"airbnb-typescript",
"prettier"
],
"rules": {
"no-use-before-define": [
"error",
{
"functions": false
}
],
"no-plusplus": "off",
"no-restricted-syntax": [
"error",
{
"selector": "LabeledStatement",
"message": "Labels are a form of GOTO; using them makes code confusing and hard to maintain and understand."
},
{
"selector": "WithStatement",
"message": "`with` is disallowed in strict mode because it makes code impossible to predict and optimize."
}
],
"no-console": "off",
"no-else-return": "off",
"prefer-destructuring": "off",
"import/prefer-default-export": "off",
"import/no-unresolved": "off",
"import/extensions": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"args": "none",
"varsIgnorePattern": "_"
}
],
"@typescript-eslint/indent": "off",
"react/require-default-props": "off",
"react/jsx-one-expression-per-line": "off",
"react/jsx-indent": "off",
"react/jsx-wrap-multilines": "off"
}
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@fullhuman/postcss-purgecss": "^2.0.6",
"@types/howler": "^2.2.1",
"@types/math-expression-evaluator": "^1.2.0",
"@types/nanoid": "^2.0.0",
"@types/priorityqueuejs": "^1.0.1",
"@types/react": "^16.9.2",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dom": "^16.9.0",
"@types/react-modal": "^3.10.4",
"@types/react-redux": "^7.1.2",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-typescript": "^4.0.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.2",
"typescript": "^3.7.5"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@tippyjs/react": "^4.1.0",
"@types/classnames": "^2.2.9",
"@types/resize-observer-browser": "^0.1.5",
"classnames": "^2.2.6",
"has": "^1.0.3",
"howler": "^2.2.1",
"idb-keyval": "^3.2.0",
"math-expression-evaluator": "^1.3.7",
"nanoid": "^2.1.1",
"notyf": "^3.7.0",
"pixi-particles": "^4.2.0",
"pixi.js": "^5.1.3",
"priorityqueuejs": "^2.0.0",
"react": "^16.9.0",
"react-beautiful-dnd": "^13.0.0",
"react-dom": "^16.9.0",
"react-draggable": "^4.4.3",
"react-intl": "^5.10.16",
"react-modal": "^3.11.1",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"rot-js": "^2.1.1",
"tailwindcss": "^2.0.2",
"tippy.js": "^6.2.6",
"ts-toolbelt": "^4.10.21",
"typesafe-actions": "^4.4.2"
}
}