-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.49 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
{
"name": "microwave",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "parcel ./src/index.html",
"build": "npm run check && parcel build ./src/index.html --public-url ./ --no-source-maps",
"check": "tsc --noEmit && eslint src --ext .ts,.tsx --max-warnings=0"
},
"author": "Andrew Blakey",
"license": "MIT",
"prettier": {
"printWidth": 100
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-angle-bracket-type-assertion": "off",
"@typescript-eslint/prefer-interface": "off"
}
},
"devDependencies": {
"@parcel/optimizer-data-url": "^2.10.1",
"@parcel/transformer-inline-string": "^2.10.1",
"@types/howler": "^2.2.11",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"parcel": "^2.10.1",
"prettier": "^3.0.3",
"process": "^0.11.10",
"typescript": "^5.2.2"
},
"dependencies": {
"howler": "^2.2.4",
"ts-essentials": "^9.4.1"
}
}