-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.47 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
{
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack serve --mode=development",
"build-stats": "webpack --profile --json > public/stats.json",
"analyze": "yarn build-stats && webpack-bundle-analyzer public/stats.json",
"lint": "tsc --noEmit && eslint 'src/**/*.{ts,tsx}' --cache",
"test": "yarn lint && jest"
},
"dependencies": {
"konva": "^8.4.2",
"mobx": "^6.8.0",
"mobx-react-lite": "^3.4.3",
"nanoid": "^4.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-konva": "^18.2.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"css-loader": "^6.7.3",
"eslint": "^8.36.0",
"eslint-config-airbnb-typescript-prettier": "^5.0.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-jest": "^27.2.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.4",
"sass": "^1.59.3",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.2",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"tsconfig-paths-jest": "^0.0.1",
"typescript": "^4.9.5",
"webpack": "^5.76.2",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.0"
}
}