-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
86 lines (86 loc) · 2.8 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
77
78
79
80
81
82
83
84
85
86
{
"name": "vela-web-ui",
"version": "0.1.0",
"description": "Vela UI",
"author": "Vela Team",
"engines": {
"node": ">=18.12.0"
},
"dependencies": {
"@hpcc-js/wasm-graphviz": "^1.3.0",
"clipboard": "2.0.11",
"d3": "^7.8.5"
},
"devDependencies": {
"@double-great/stylelint-a11y": "3.0.2",
"@fullhuman/postcss-purgecss": "6.0.0",
"@parcel/transformer-elm": "2.12.0",
"@parcel/transformer-sass": "2.12.0",
"axe-core": "4.10.0",
"cypress": "5.6.0",
"cypress-axe": "0.14.0",
"elm": "0.19.1-6",
"elm-format": "0.8.7",
"elm-test": "0.19.1-revision12",
"make-dir-cli": "4.0.0",
"ncp": "2.0.0",
"parcel": "2.12.0",
"postcss": "8.4.47",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"start-server-and-test": "2.0.8",
"stylelint": "16.9.0",
"stylelint-color-format": "1.1.0",
"stylelint-config-recommended-scss": "14.1.0",
"stylelint-declaration-block-no-ignored-properties": "2.8.0",
"stylelint-declaration-strict-value": "1.10.6",
"stylelint-high-performance-animation": "1.10.0",
"stylelint-order": "6.0.4",
"stylelint-scss": "6.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:elm-fix": "elm-format --yes 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"
}