-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
104 lines (104 loc) · 4.03 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@civictheme/uikit",
"version": "1.8.2",
"license": "GPL-2.0-or-later",
"description": "CivicTheme UI Kit with Storybook integration",
"keywords": [
"ui kit",
"uikit",
"components",
"component library",
"design system",
"pattern library",
"storybook",
"styleguide"
],
"homepage": "https://github.com/civictheme/uikit",
"bugs": "https://github.com/civictheme/uikit",
"repository": "https://github.com/civictheme/uikit.git",
"scripts": {
"build": "npm run dist && export STORYBOOK_FULL=1 && npm run build-storybook -- --quiet",
"build-storybook": "export NODE_OPTIONS=--openssl-legacy-provider && build-storybook -s .storybook/static",
"storybook": "export NODE_OPTIONS=--openssl-legacy-provider && start-storybook -s .storybook/static",
"storybook-full": "export NODE_OPTIONS=--openssl-legacy-provider && export STORYBOOK_FULL=1 && start-storybook -s .storybook/static",
"lint": "eslint ./components ./.storybook ./webpack ./tests && stylelint 'components/**/*.scss'",
"lint-fix": "eslint ./components ./.storybook ./webpack ./tests --fix && stylelint 'components/**/*.scss' --fix",
"dist": "export NODE_OPTIONS=--openssl-legacy-provider && webpack --config ./webpack/webpack.prod.js",
"dist-dev": "export NODE_OPTIONS=--openssl-legacy-provider && webpack --config ./webpack/webpack.dev.js",
"postinstall": "if [ -d .storybook ]; then patch-package; fi",
"test": "npm run test-unit && npm run test-storybook",
"test:ci": "npm run test-unit:ci && npm run test-storybook:ci",
"test-unit": "jest",
"test-unit:ci": "jest --coverage",
"test-storybook": "test-storybook",
"test-storybook:ci": "concurrently --kill-others --success first --names \"SB,TEST\" --prefix-colors \"magenta,blue\" \"npx http-server storybook-static --port 6006 -a 127.0.0.1 --silent\" \"wait-on --timeout 10000 http://127.0.0.1:6006 && npm run test-storybook\"",
"reset": "rm -rf node_modules; rm -rf package-lock.json"
},
"engines": {
"node": ">=18.14"
},
"dependencies": {
"@popperjs/core": "^2.11.8"
},
"devDependencies": {
"@alexskrypnyk/scss-variables-extractor": "^0.1.1",
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@playwright/test": "^1.44.1",
"@storybook/addon-a11y": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addon-links": "^6.5.16",
"@storybook/addons": "^6.5.16",
"@storybook/html": "^6.5.16",
"@storybook/test-runner": "^0.18.2",
"@testing-library/jest-dom": "^6.4.6",
"addon-screen-reader": "^1.8.6",
"babel-jest": "^29.7.0",
"babel-loader": "^8.3.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-strict-mode": "^6.24.1",
"babel-template": "^6.26.0",
"boxen": "^8.0.0",
"chalk": "^4.1.2",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^9.0.0",
"css-loader": "^5.2.7",
"dedent": "^1.5.3",
"deepmerge": "^4.3.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import-newlines": "^1.4.0",
"file-loader": "^6.2.0",
"glob-gitignore": "^1.0.14",
"html-webpack-plugin": "^4.5.2",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"jsdom": "^25.0.0",
"lorem-ipsum": "^2.0.8",
"mini-css-extract-plugin": "^1.6.2",
"node-sass-magic-importer": "^5.3.3",
"patch-package": "^8.0.0",
"react": "^17",
"react-dom": "^17",
"sass": "^1.77.5",
"sass-loader": "^10.5.2",
"seedrandom": "^3.0.5",
"semver": "^7.6.2",
"style-loader": "^2.0.0",
"stylelint": "^14.16.1",
"stylelint-config-standard": "^23.0.0",
"stylelint-config-standard-scss": "^2.0.1",
"svg-sprite-loader": "^6.0.11",
"twig": "^1.17.1",
"twig-testing-library": "^1.2.0",
"twigjs-loader": "^1.0.3",
"wait-on": "^8.0.0",
"webpack": "^4.47.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^6.0.0"
}
}