This repository has been archived by the owner on Apr 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 1.93 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
{
"name": "@PaackEng/frontend-elm-kit",
"version": "4.1.2",
"description": "",
"private": false,
"files": [
"auth0",
"bin",
"elm",
"firebase",
"prettier",
"profiler",
"eslintconfig.json",
"tsconfig.json"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"lint": "yarn run eslint && yarn run prettier",
"eslint": "eslint auth0/**/*.ts --config eslintconfig.json",
"prettier": "prettier --check .",
"prettify": "prettier --write .",
"tsc": "tsc --noEmit -p . --pretty"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PaackEng/frontend-elm-kit.git"
},
"author": "PaackEng",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/PaackEng/frontend-elm-kit/issues"
},
"homepage": "https://github.com/PaackEng/frontend-elm-kit#readme",
"dependencies": {
"elm-optimize-level-2": "^0.3.4",
"esbuild": "^0.14.47",
"esbuild-plugin-elm": "^0.0.11",
"firebase": "^9.8.3"
},
"peerDependencies": {
"@auth0/auth0-spa-js": "^1.20.1",
"@types/chart.js": "^2.9.37",
"@types/elm": "^0.19.1",
"chart.js": "^3.7.1",
"elm": "^0.19.1-5",
"elm-review": "^2.7.1",
"elm-test": "^0.19.1-revision7"
},
"devDependencies": {
"@auth0/auth0-spa-js": "^1.20.1",
"@types/chart.js": "^2.9.37",
"@types/elm": "^0.19.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"chart.js": "^3.7.1",
"eslint": "^8.18.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"bin": {
"paack-elm-wrapper": "bin/elm-wrapper.sh",
"paack-elm-build": "bin/build.js",
"paack-elm-serve": "bin/serve.js",
"paack-elm-react-build": "bin/elm-react-build.js",
"paack-elm-react-serve": "bin/elm-react-serve.js"
},
"engines": {
"node": ">=0.16"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}