-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.66 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
{
"name": "mobility-profile-ui",
"version": "1.0.0",
"description": "Mobility Profile UI",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development webpack serve",
"build": "NODE_ENV=production webpack --mode production --progress",
"tscheck": "tsc",
"test": "jest",
"lint": "eslint . --fix --max-warnings=0",
"format": "prettier . --write",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/City-of-Turku/mobility-profile-ui.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/City-of-Turku/mobility-profile-ui/issues"
},
"homepage": "https://github.com/City-of-Turku/mobility-profile-ui#readme",
"dependencies": {
"@mui/material": "^5.13.0",
"@reduxjs/toolkit": "^1.9.5",
"bootstrap": "^4.6.0",
"crypto-js": "^4.2.0",
"dotenv": "^16.3.1",
"react": "^18.2.0",
"react-bootstrap": "^2.8.0",
"react-dom": "^18.2.0",
"react-google-recaptcha": "^3.1.0",
"react-hook-form": "7.45.4",
"react-intl": "^6.4.2",
"react-redux": "^8.0.5",
"react-router-dom": "^6.16.0",
"react-select": "^5.7.4"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/crypto-js": "^4.2.2",
"@types/jest": "^29.5.1",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/redux-mock-store": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"babel-loader": "^9.1.2",
"core-js": "^3.30.2",
"css-loader": "^6.7.3",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.2",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"redux-mock-store": "^1.5.4",
"regenerator-runtime": "^0.13.11",
"sass": "^1.62.1",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.2",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4",
"webpack": "^5.82.0",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0"
},
"lint-staged": {
"*.{js,ts,tsx} !(*.webpack.config.js)": "npm run lint",
"*.{js,ts,tsx,css,,scss,md,html,json}": "npm run format"
}
}