-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.3 KB
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
{
"name": "galleria",
"version": "1.0.0",
"private": true,
"description": "",
"main": "./app/src/index.js",
"scripts": {
"test": "jest",
"start": "webpack serve --mode development --open --hot",
"build": "webpack --mode production"
},
"keywords": [],
"author": "Lucas Atolini <atolini@live.com>",
"license": "ISC",
"dependencies": {
"@tanstack/react-query": "^4.0.10",
"@tanstack/react-query-devtools": "^4.0.10",
"@types/jest": "^28.1.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-remove-scroll-bar": "^2.3.3",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/node": "^18.0.6",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^11.0.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.3",
"source-map-loader": "^4.0.0",
"svg-url-loader": "^7.1.1",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"url-loader": "^4.1.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"workspaces": [
"./app_modules/*"
]
}