This repository has been archived by the owner on Jun 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.99 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
{
"name": "formulir-monorepo",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/nurulakbaral/formulir.git",
"author": "nurulakbaral <[email protected]>",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"dev": "webpack serve",
"prettier": "prettier --check \"packages/**/*.{js,jsx,ts,tsx}\"",
"format": "prettier --write \"packages/**/*.{js,jsx,ts,tsx}\""
},
"dependencies": {
"@date-io/date-fns": "^2.11.0",
"@emotion/react": "^11.6.0",
"@emotion/styled": "^11.6.0",
"@mui/lab": "^5.0.0-alpha.57",
"@mui/material": "^5.2.1",
"date-fns": "^2.26.0",
"formik": "^2.2.9",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tiny-warning": "^1.0.3"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/plugin-transform-object-assign": "^7.14.5",
"@babel/plugin-transform-react-constant-elements": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"babel-loader": "^8.2.2",
"babel-plugin-transform-dev-warning": "^0.1.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"html-webpack-plugin": "^5.5.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.5.0",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,jsx,ts,tsx}": "prettier --write"
}
}