-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.81 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
{
"name": "imdb",
"version": "0.0.0-dev",
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve --config config/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config config/webpack.prod.js",
"lint:es": "eslint ./src/**/*.{js,ts,tsx} --fix",
"test": "jest --config=config/jest.config.ts",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"src/**/*.{css,scss,sass}": [
"prettier --write"
]
},
"dependencies": {
"@fluentui/react": "^8.115.6",
"@fluentui/react-components": "^9.46.8",
"@fluentui/react-datepicker-compat": "^0.4.26",
"@fluentui/react-experiments": "^8.14.133",
"@fluentui/react-icons": "^2.0.232",
"@fluentui/react-icons-mdl2": "^1.3.57",
"@fluentui/react-theme": "^9.1.17",
"@persevie/statemanjs": "^1.6.0",
"@persevie/statemanjs-react": "^1.2.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.3",
"sass": "^1.56.1",
"sass-loader": "^13.1.0"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@swc/core": "^1.3.14",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.2.2",
"@types/node": "^18.11.10",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"autoprefixer": "^10.4.13",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.2.2",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^3.2.0",
"express": "^4.18.2",
"html-webpack-plugin": "^5.5.0",
"husky": "^9.0.11",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^13.0.3",
"mini-css-extract-plugin": "^2.6.1",
"mini-svg-data-uri": "^1.4.4",
"path-browserify": "^1.0.1",
"postcss": "^8.4.18",
"postcss-loader": "^7.0.1",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"qs": "^6.11.0",
"react-test-renderer": "^18.3.1",
"style-loader": "^3.3.1",
"svgo-loader": "^3.0.3",
"swc-loader": "^0.2.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
}
}