-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.82 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
{
"name": "crisy-critters",
"private": true,
"version": "0.0.0",
"license": "UNLICENSED",
"engines": "16.x",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"format": "make format",
"format:elm": "make format-elm",
"format:ts": "make format-ts",
"lint": "make lint",
"lint:elm": "make lint-elm",
"lint:ts": "make lint-ts",
"lint:elm:fix": "make lint-elm-fix",
"lint:ts:fix": "make lint-ts-fix",
"prepare": "is-ci || husky install",
"preview": "make preview",
"start": "make run",
"test": "make test",
"test:elm": "make test-elm",
"test:ts": "make test-ts"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/typography": "^0.5.2",
"@types/jest": "^29.4.0",
"@types/pubnub": "^7.2.1",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"autoprefixer": "^10.4.7",
"elm-json": "^0.2.13",
"elm-test": "^0.19.1-revision12",
"elm-ts-interop": "^0.0.8",
"esbuild": "^0.17.10",
"esbuild-jest": "^0.5.0",
"eslint": "^8.35.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"jest": "^29.4.3",
"lint-staged": "^13.1.2",
"postcss": "^8.4.14",
"prettier": "^2.8.4",
"tailwindcss": "^3.2.7",
"ts-node": "^10.9.1",
"typescript": "^5.0.0",
"vite": "^4.1.4",
"vite-plugin-elm": "^2.7.2"
},
"dependencies": {
"@sentry/browser": "^7.42.0",
"@sentry/tracing": "^7.42.0",
"fp-ts": "^2.13.1",
"io-ts": "^2.2.20",
"pubnub": "^7.2.2",
"ts-pattern": "^4.2.1"
},
"lint-staged": {
"**/*.elm": [
"elm-format --yes"
],
"**/*.ts": [
"eslint --fix",
"prettier --write"
]
}
}