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 8
/
Copy pathpackage.json
54 lines (54 loc) · 1.85 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
{
"name": "paack-ui",
"version": "7.21.1",
"description": "Paack's Design System applied over Elm UI",
"main": "index.js",
"assetsPath": "showcase/public/assets/",
"scripts": {
"cleanup:showcase": "cd showcase && elm-review --template PaackEng/elm-review-config#1.2.0 --ignore-dirs ../src --fix-all",
"cleanup:ui": "elm-review --template PaackEng/elm-review-config#1.2.0 --fix-all",
"cleanup": "yarn run review:ui && yarn run review:showcase --fix-all",
"docs": "elm make --docs=dist/docs.json",
"docs-preview": "yarn exec edp",
"build": "parcel build showcase/public/index.html --public-url ./",
"showcase": "parcel showcase/public/index.html",
"test": "elm-test",
"i18n": "i18n-json-to-elm",
"percy": "percy exec -- cypress run",
"review:showcase": "cd showcase && elm-review --template PaackEng/elm-review-config#1.2.0 --ignore-dirs ../src",
"review:ui": "elm-review --template PaackEng/elm-review-config#1.2.0",
"review": "yarn run review:ui && yarn run review:showcase"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PaackEng/paack-ui.git"
},
"author": "PaackEng Frontend Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/PaackEng/paack-ui/issues"
},
"homepage": "https://paackeng.github.io/paack-ui/",
"dependencies": {
"@percy/cli": "^1.1.0",
"@percy/cypress": "^3.1.1",
"cypress": "^9.6.0",
"elm": "^0.19.1-5",
"elm-format": "^0.8.5",
"elm-hot": "^1.1.6",
"elm-test": "^0.19.1-revision7",
"i18n-json-to-elm": "^1.3.1",
"node-elm-compiler": "^5.0.6",
"paack-ui-assets": "^0.3.2",
"parcel-bundler": "^1.12.5",
"parcel-plugin-asset-copier": "^1.1.0"
},
"devDependencies": {
"elm-doc-preview": "^5.0.5",
"elm-review": "^2.7.2"
}
}