forked from go-vela/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.63 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.63 KB
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
{
"name": "vela-web-ui",
"version": "0.1.0",
"description": "Vela UI",
"author": "Vela Team",
"engines": {
"node": ">=18.12.0"
},
"dependencies": {
"clipboard": "2.0.11"
},
"devDependencies": {
"@double-great/stylelint-a11y": "2.0.2",
"@fullhuman/postcss-purgecss": "5.0.0",
"@parcel/transformer-elm": "2.8.3",
"@parcel/transformer-sass": "2.8.3",
"axe-core": "4.7.0",
"cypress": "5.6.0",
"cypress-axe": "0.14.0",
"elm": "0.19.1-5",
"make-dir-cli": "3.0.0",
"ncp": "2.0.0",
"parcel": "2.8.3",
"postcss": "8.4.23",
"prettier": "2.8.8",
"rimraf": "5.0.0",
"start-server-and-test": "2.0.0",
"stylelint": "15.6.0",
"stylelint-color-format": "1.1.0",
"stylelint-config-recommended-scss": "11.0.0",
"stylelint-declaration-block-no-ignored-properties": "2.7.0",
"stylelint-declaration-strict-value": "1.9.2",
"stylelint-high-performance-animation": "1.8.0",
"stylelint-order": "6.0.3",
"stylelint-scss": "4.7.0"
},
"scripts": {
"predev": "npm run clean",
"dev": "npm run start",
"prestart": "npm run clean",
"start": "npm run copy:static && parcel src/static/index.html --port 8888",
"prebuild": "npm run clean",
"build": "parcel build src/static/index.html --no-optimize --detailed-report",
"postbuild": "npm run copy:static",
"prebuild:prod": "npm run clean",
"build:prod": "parcel build src/static/index.html --no-cache --detailed-report",
"postbuild:prod": "npm run copy:static",
"copy:static": "make-dir ./dist && ncp ./src/static/images ./dist/images",
"test": "elm-test",
"test:watch": "elm-test --watch",
"test:cy": "VELA_LOG_BYTES_LIMIT=1000 start-test 8888 cypress",
"test:cy-open": "VELA_LOG_BYTES_LIMIT=1000 start-test 8888 cypress:open",
"cypress": "cypress run",
"cypress:open": "cypress open",
"clean": "rimraf ./.parcel-cache ./.cache ./dist",
"lint:prettier": "prettier --check '**/*.{js,json,ts,yml,scss,html}'",
"lint:prettier-fix": "npm run lint:prettier -- --write",
"lint:css": "stylelint --cache --cache-location 'node_modules/' 'src/scss/**/*.scss'",
"lint:css-fix": "npm run lint:css -- --fix",
"lint:elm": "elm-format --validate src/ tests/",
"lint:fix": "npm run lint:css-fix && npm run lint:prettier-fix",
"lint": "npm run lint:css && npm run lint:prettier"
},
"repository": {
"type": "git",
"url": "git+https://github.com/go-vela/ui.git"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"keywords": [
"elm",
"parcel",
"ci",
"vela"
],
"license": "Apache-2.0"
}