-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.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
{
"private": true,
"version": "v1.0.1",
"engines": {
"node": ">=v14.x.x"
},
"scripts": {
"prepare": "husky install",
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production"
},
"dependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.17.12",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.8.0",
"@mui/material": "^5.8.0",
"@mui/styles": "5.8.3",
"@xstate/react": "^3.0.0",
"formik": "^2.2.9",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-dom": "^18.0.0",
"react-router-dom": "5",
"webpack": "^5.60.0",
"webpack-cli": "^4.9.1",
"xstate": "^4.32.1",
"yup": "^0.32.11"
},
"devDependencies": {
"axios": "^0.21",
"eslint": "^8.25.0",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.1",
"laravel-mix": "^6.0.6",
"lint-staged": "^13.0.3",
"lodash": "^4.17.19",
"postcss": "^8.1.14",
"prettier": "2.7.1"
},
"lint-staged": {
"resources/js/**/*.(js|jsx)": [
"eslint",
"prettier --write --ignore-unknown"
]
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"useTabs": false,
"printWidth": 100,
"tabWidth": 2
},
"name": "promptering",
"main": "index.js",
"repository": "[email protected]:allestaire/laravel8-starter.git",
"author": "Al Lestaire Acasio <[email protected]>",
"license": "MIT"
}