forked from siriwatknp/mui-treasury
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.47 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
105
106
107
{
"name": "mui-treasury",
"private": true,
"workspaces": [
"packages/*",
"website"
],
"description": "The mission is to boost any projects that want to shake the world, so that our future is better than today. This is an open-source project that provides a collection of ready-to-use components based on Material-UI.",
"version": "2.0.0",
"author": "siriwatknp <[email protected]>",
"bugs": {
"url": "https://github.com/siriwatknp/mui-treasury/issues"
},
"homepage": "https://mui-treasury.com",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/siriwatknp/mui-treasury.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"prettier --fix",
"eslint"
]
},
"scripts": {
"cm": "npx git-cz",
"cy:open": "cypress open --browser chrome --config-file cypress/cypress.json",
"build": "yarn workspace website build",
"build:ci": "npx hygen ci production && yarn install && yarn build",
"deploy": "yarn build:ci && firebase deploy --only hosting:current",
"postdeploy": "git reset --hard",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"dev": "yarn workspace website dev",
"start": "yarn workspace website start",
"serve": "yarn workspace website serve",
"test": "jest",
"typecheck": "tsc --skipLibCheck",
"storybook": "NODE_ENV=development start-storybook -p 6006",
"build-storybook": "NODE_ENV=production build-storybook -s public",
"release": "npm whoami && lerna run --scope \"@mui-treasury/*\" build && lerna publish --contents build",
"changelog": "source .env && lerna-changelog | pbcopy",
"list-versions": "lerna list -l"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-transform-object-assign": "^7.8.3",
"@testing-library/jest-dom": "^4.2.3",
"@testing-library/react": "^9.3.1",
"@testing-library/react-hooks": "^3.2.1",
"@types/debounce": "^1.2.0",
"@types/deepmerge": "^2.2.0",
"@types/jest": "^25.1.1",
"@types/lodash": "^4.14.150",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.0-beta.6",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-gatsby": "^0.2.8",
"cypress": "^4.6.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-flowtype": "4.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "2.x",
"firebase-tools": "^7.4.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.4",
"husky": "^4.2.1",
"hygen": "^5.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-each": "^26.0.1",
"lerna": "^3.19.0",
"lint-staged": "^10.0.7",
"lodash": "^4.17.15",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.1",
"prop-types": "^15.7.2",
"react-test-renderer": "^16.13.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@material-ui/core": "^4.10.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.54",
"csstype": "^2.6.10",
"source-map-explorer": "^2.4.2"
}
}