-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.69 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
{
"name": "origin-front-admin",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "run-p -l type-check:watch start:dev",
"start:dev": "webpack serve --config ./config/webpack/dev.js --open",
"build": "run-p -l type-check build:prod",
"build:prod": "npm run clean && webpack --config ./config/webpack/prod.js",
"analyze": "npm run clean && npm run type-check && webpack --config ./config/webpack/analyze.js",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"test": "jest -c ./config/test/jest.js --verbose",
"test:watch": "npm run test -- --watchAll -i",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/lemoncoders/origin-front-employee.git"
},
"author": "Lemoncode",
"license": "MIT",
"homepage": "https://bitbucket.org/lemoncoders/origin-front-employee#readme",
"dependencies": {
"@emotion/css": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@lemoncode/fonk": "^1.5.4",
"@lemoncode/fonk-formik": "^4.0.1",
"@lemoncode/fonk-match-field-validator": "^1.0.1",
"@lemoncode/fonk-required-by-field-validator": "^1.0.1",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.7",
"axios": "^1.3.2",
"formik": "^2.2.9",
"graphql-request": "^5.1.0",
"immer": "^9.0.19",
"lodash.flowright": "^3.5.0",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-promise-tracker": "^2.1.1",
"react-router-dom": "^6.8.1",
"react-spinners": "^0.13.8",
"react-table": "^7.8.0",
"regenerator-runtime": "^0.13.11"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@emotion/babel-plugin": "^11.10.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@testing-library/dom": "^8.20.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"babel-loader": "^9.1.2",
"dotenv-webpack": "^8.0.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"npm-run-all": "^4.1.5",
"react-refresh": "^0.14.0",
"rimraf": "^4.1.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
}
}