-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.89 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
{
"private": true,
"scripts": {
"dev": "webpack serve --mode=development",
"prebuild": "rimraf build",
"build": "webpack --mode=production",
"lint": "eslint --fix './src/**/*.{ts,tsx}'",
"test:watch": "jest --watch --coverage",
"test": "jest",
"create": "node bin/create.js --path"
},
"dependencies": {
"clsx": "^1.1.1",
"effector": "^22.1.2",
"effector-react": "^22.0.5",
"focus-visible": "^5.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.12.1"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.2",
"@types/react": "^18.2.11",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"babel-loader": "^9.1.2",
"core-js": "^3.19.3",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^5.0.0",
"dotenv": "^16.1.4",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.3.0",
"eslint-config-alloy": "^5.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"group-css-media-queries-loader": "^4.3.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"mini-css-extract-plugin": "^2.4.5",
"prettier": "^2.5.0",
"regenerator-runtime": "^0.13.9",
"sass": "^1.43.5",
"sass-loader": "^13.3.2",
"ts-loader": "^9.2.6",
"typescript": "^5.1.3",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}