-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
75 lines (75 loc) · 2.48 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
{
"name": "component-set",
"version": "2.200.0",
"main": "dist/templates.json",
"license": "UNLICENSED",
"private": false,
"devDependencies": {
"@betty-blocks/cli": "^25.101.0",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-angular": "^16.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.3.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^4.2.5",
"nodemon": "^2.0.22",
"prettier": "^2.5.0",
"semantic-release": "^19.0.3",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"start": "bb components serve -p 5002",
"start:ci": "bb components serve -p 5002 &",
"start-docker": "bb components serve -p 5002 --host 0.0.0.0",
"build": "bb components build",
"build-fast": "bb components build --fast",
"dev": "nodemon",
"dev:fast": "nodemon --config nodemonfast.json",
"lint": "eslint --ext .js,.ts,.tsx ./src",
"lint:ci": "yarn lint --max-warnings 0",
"prettier:base": "prettier --single-quote",
"prettier:check": "yarn prettier:base --list-different \"src/**/*.js\"",
"prettier:write": "yarn prettier:base --write \"src/**/*.js\"",
"upload": "bb components publish -b material-ui-component-set",
"upload-bundle": "bb components publish-bundle -b material-ui-component-set",
"test": "echo \"Error: no test specified\" && exit 0",
"bundle": "npx webpack --config webpack.config.js"
},
"files": [
"dist"
],
"dependencies": {
"@betty-blocks/component-sdk": "^1.86.1",
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.9.11",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.50",
"@material-ui/pickers": "^3.2.10",
"@material-ui/styles": "^4.9.10",
"date-fns": "^2.11.0",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"repository": {
"type": "git",
"url": "https://github.com/bettyblocks/material-ui-component-set.git"
}
}