-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.33 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.33 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
{
"name": "@beliantech/bt-components",
"version": "0.29.18",
"description": "UI components for Belian Tech products",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.common.js && npm run build-css",
"build-storybook": "build-storybook -c .storybook -o .out",
"deploy-storybook": "npm run build-storybook && npx firebase deploy",
"publish-npm": "npm run build && wct --npm && npm publish dist --access public",
"build-css": "npx tailwindcss build src/bt-utils.css -o dist/bt-utils-full.css && npm run purge-css",
"purge-css": "npx purgecss --css dist/bt-utils-full.css --content src/**/*.js src/components/**/*.js -s w-1/12 w-2/12 w-3/12 w-4/12 w-5/12 w-6/12 w-7/12 w-8/12 w-9/12 w-10/12 w-11/12 w-12/12 -o dist/bt-utils.css && rm dist/bt-utils-full.css",
"test": "npm run build && wct --npm",
"test:debug": "concurrently \"webpack --watch --config ./webpack.common.js\" \"wct --npm -p --config-file wct.conf.local.json\"",
"storybook": "start-storybook -p 6006",
"start": "npm run storybook"
},
"homepage": "https://github.com/beliantech/bt-components",
"repository": {
"type": "git",
"url": "https://github.com/beliantech/bt-components.git"
},
"author": "Jonathan Lin",
"license": "MIT",
"dependencies": {
"@material/mwc-circular-progress": "^0.21.0",
"@material/mwc-icon": "^0.21.0",
"@material/mwc-linear-progress": "^0.21.0",
"@material/mwc-slider": "^0.21.0",
"codeflask": "^1.4.1",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0",
"lodash": "^4.17.15",
"pikaday": "^1.8.0",
"trix": "^1.2.3",
"uuid": "^8.1.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@beliantech/iron-test-helpers": "^3.1.0",
"@storybook/cli": "^5.3.18",
"@storybook/html": "^5.3.18",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^6.1.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^5.1.1",
"postcss": "^8.2.7",
"postcss-loader": "^4.2.0",
"prettier": "^2.0.5",
"purgecss": "^4.0.2",
"tailwindcss": "^2.0.3",
"terser-webpack-plugin": "^3.0.1",
"wct-browser-legacy": "^1.0.2",
"web-component-tester": "^6.9.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}